From 080b23393d7ca4cbfb5cfdff392c28972206c983 Mon Sep 17 00:00:00 2001 From: lastminutediorama Date: Tue, 13 Aug 2024 20:51:02 -0500 Subject: [PATCH] more css organizing --- .../plan/area-notes/area-notes.component.scss | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/interface/src/app/plan/area-notes/area-notes.component.scss b/src/interface/src/app/plan/area-notes/area-notes.component.scss index 1e737d64b..3e8c5e8ba 100644 --- a/src/interface/src/app/plan/area-notes/area-notes.component.scss +++ b/src/interface/src/app/plan/area-notes/area-notes.component.scss @@ -35,15 +35,20 @@ .notes { overflow-y: auto; flex: 1; - .grow { // fflagged section - flex-grow: 1; - } } .note { padding: 16px; color: $color-black; } + +.note-head { + @include small-input-label(); + display: flex; + gap: 8px; + margin-bottom: 8px; +} + .date { color: $color-md-gray; font-weight: 400; @@ -58,8 +63,6 @@ } } - - textarea { resize: none; overflow: hidden; @@ -89,18 +92,15 @@ textarea { border-bottom: 1px $color-soft-gray solid; } -.note-right { - width: 28px; +.notes .grow { // fflagged section + flex-grow: 1; } -.note-head { - @include small-input-label(); - display: flex; - gap: 8px; - margin-bottom: 8px; +.note-right { + width: 28px; } -.add-note-field { +.add-note-field { height: 70px; flex-shrink: 0; border-top: 1px $color-soft-gray solid; @@ -111,5 +111,5 @@ textarea { color: $color-black; display: flex; flex-direction: row; - justify-content: space-between + justify-content: space-between; }