Skip to content

Commit a5ccc0a

Browse files
committed
removed shadow from edit delete menu
1 parent 158fc7f commit a5ccc0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/home_sidebar_items/ComponentTab/ComponentTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Component Tab Container that holds components for creating components, editing and deleting, and adding props.
22
Functionality includes: if active component is selected, will switch view to editing mode. If not, it will be in create mode -->
33
<template>
4-
<q-card id="store-cards">
4+
<q-card id="store-cards" class="no-shadow">
55
<CreateComponent v-if="activeComponent === ''"/>
66
<EditDeleteComponents v-if="activeComponent !== ''"/>
77
</q-card>

src/components/home_sidebar_items/ComponentTab/EditDeleteComponents.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Description:
99
<div class="edit-component-div">
1010
<div>
1111
<button class="menu-link" @click="resetActiveComponent"><i class="fa fa-arrow-left" aria-hidden="true"></i>&nbsp; &nbsp; Create Component Menu</button>
12-
<q-card class="expansion-item" dark flat>
12+
<q-card class="expansion-item no-shadow" dark flat>
1313
<div
1414
class="text-body2"
1515
style="background: #272a2a; padding: 12px"

0 commit comments

Comments
 (0)