Add create note dialog with type selector (M5 Task 1)
This commit is contained in:
@@ -21,6 +21,12 @@
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.note-list__header-right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.note-list__count {
|
||||
font-size: 12px;
|
||||
color: #888;
|
||||
@@ -29,6 +35,28 @@
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.note-list__add-btn {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
background: #2a2a4a;
|
||||
color: #888;
|
||||
font-size: 16px;
|
||||
line-height: 1;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 0;
|
||||
transition: all 0.15s;
|
||||
}
|
||||
|
||||
.note-list__add-btn:hover {
|
||||
background: #4a9eff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Search */
|
||||
.note-list__search {
|
||||
padding: 8px 12px;
|
||||
|
||||
Reference in New Issue
Block a user