Skip to content

Commit 18376a5

Browse files
committed
updated note buttons to match sidebar; fixed background color mismatch on notes modal
1 parent bd96792 commit 18376a5

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/components/ComponentDisplay.vue

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,16 @@
131131
></q-input>
132132
<q-btn
133133
id="comp-btn"
134+
class="sidebar-btn"
134135
color="secondary"
135136
label="Submit Note"
136137
:disable="noteText.length > 0 ? false : true"
137138
@click="submitNote"
138139
/>
139140
<q-btn
140141
id="note-btn-close"
141-
label="Exit Notes"
142+
class="sidebar-btn"
143+
label="Close"
142144
@click="this.openNoteModal"
143145
/>
144146
</q-form>
@@ -485,7 +487,7 @@ li:hover{
485487
margin-right: 10px;
486488
}
487489
.noteBox{
488-
background-color: $subprimary;
490+
background-color: $subsecondary;
489491
color: $menutext;
490492
width: 65%;
491493
padding: 15px;
@@ -498,7 +500,7 @@ li:hover{
498500
#noteDelete{
499501
background-color: $secondary;
500502
width: 20px;
501-
height: 20px;
503+
min-height: 42px;
502504
display: flex;
503505
justify-content: center;
504506
align-self: flex-end;
@@ -682,9 +684,9 @@ li:hover{
682684
}
683685
684686
#note-btn-close {
685-
background-color: rgba($negative, .2);
686-
border: 1px solid $negative;
687-
color: $negative;
687+
background-color: $subprimary;
688+
color: $menutext;
689+
border: 1px solid $menutext;
688690
width: 100%;
689691
margin-top: 10px;
690692
margin-bottom: 10px;

0 commit comments

Comments
 (0)