diff --git a/src/element/Note.css b/src/element/Note.css index d6156dc..b42af9e 100644 --- a/src/element/Note.css +++ b/src/element/Note.css @@ -1,7 +1,9 @@ .note { margin-bottom: 10px; - border-bottom: 1px solid var(--gray); - min-height: 140px; + border-radius: 10px; + background-color: var(--note-bg); + padding: 20px; + min-height: 180px; } .note.thread { diff --git a/src/index.css b/src/index.css index 5ab6b28..ec0676d 100644 --- a/src/index.css +++ b/src/index.css @@ -4,6 +4,7 @@ --font-color: #FFF; --bg-color: #000; --modal-bg-color: rgba(0,0,0, 0.8); + --note-bg: #111; --gray-superlight: #EEE; --gray-light: #999; --gray-medium: #666; @@ -28,6 +29,7 @@ --highlight: #FF9B00; --highlight-dark: #944F05; --modal-bg-color: rgba(240, 240, 240, 0.8); + --note-bg: #eee; --gray: #CCC; --gray-secondary: #DDD; --gray-tertiary: #EEE;