feat: notes styles

This commit is contained in:
2023-01-18 15:55:25 +00:00
parent fa8166e9d5
commit 644ce83fb8
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,9 @@
.note { .note {
margin-bottom: 10px; margin-bottom: 10px;
border-bottom: 1px solid var(--gray); border-radius: 10px;
min-height: 140px; background-color: var(--note-bg);
padding: 20px;
min-height: 180px;
} }
.note.thread { .note.thread {

View File

@ -4,6 +4,7 @@
--font-color: #FFF; --font-color: #FFF;
--bg-color: #000; --bg-color: #000;
--modal-bg-color: rgba(0,0,0, 0.8); --modal-bg-color: rgba(0,0,0, 0.8);
--note-bg: #111;
--gray-superlight: #EEE; --gray-superlight: #EEE;
--gray-light: #999; --gray-light: #999;
--gray-medium: #666; --gray-medium: #666;
@ -28,6 +29,7 @@
--highlight: #FF9B00; --highlight: #FF9B00;
--highlight-dark: #944F05; --highlight-dark: #944F05;
--modal-bg-color: rgba(240, 240, 240, 0.8); --modal-bg-color: rgba(240, 240, 240, 0.8);
--note-bg: #eee;
--gray: #CCC; --gray: #CCC;
--gray-secondary: #DDD; --gray-secondary: #DDD;
--gray-tertiary: #EEE; --gray-tertiary: #EEE;