From fe7abf342bc7b23270e4893c591e4daad96b5401 Mon Sep 17 00:00:00 2001 From: brian Date: Mon, 12 Apr 2021 14:34:12 -0400 Subject: [PATCH] css updates --- nginx/public_html/index.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/nginx/public_html/index.css b/nginx/public_html/index.css index e4bfc16..d1215b6 100644 --- a/nginx/public_html/index.css +++ b/nginx/public_html/index.css @@ -36,19 +36,42 @@ body{ } .app > .main{ + display: flex; + flex-direction: column; + flex-wrap: nowrap; + justify-content: flex-start; + flex: 1; } .app > .main > .notes{ display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; + + flex: 1; } .note{ width: 17rem; + height: 17rem; border: 1px solid black; border-radius: 1rem; background-color: #aaccaa; padding: 0.6rem; + + display: flex; + flex-direction: column; + flex-wrap: nowrap; + justify-content: space-between; + } + +.note > textarea{ + flex: 1; + + resize: none; + width: 100%; + background-color: #aaccaa; + border: none; + outline: none; } \ No newline at end of file