diff options
author | 2025-05-05 18:36:54 +0100 | |
---|---|---|
committer | 2025-05-05 18:36:54 +0100 | |
commit | 40029f5f4c8fb14697eaef1949a1a18eae6d9040 (patch) | |
tree | d285b0d9dc892e13ecb663934f5c7a7413ec4aee /assets/style.scss | |
parent | 6943577ec5169b04d8a24726fd87e85fc5b261a9 (diff) | |
download | macaw-web-40029f5f4c8fb14697eaef1949a1a18eae6d9040.tar.gz macaw-web-40029f5f4c8fb14697eaef1949a1a18eae6d9040.tar.bz2 macaw-web-40029f5f4c8fb14697eaef1949a1a18eae6d9040.zip |
WIP: message composer
Diffstat (limited to 'assets/style.scss')
-rw-r--r-- | assets/style.scss | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/assets/style.scss b/assets/style.scss index d4b4e91..96291ed 100644 --- a/assets/style.scss +++ b/assets/style.scss @@ -192,10 +192,17 @@ p { .open-chat-views { flex: 1 1 100%; + display: flex; + flex-direction: column; + max-height: auto; } .open-chat-view { height: auto; + display: flex; + flex-direction: column; + justify-content: stretch; + max-height: auto; } .chat-view-header .avatar { @@ -219,6 +226,7 @@ p { border-width: 2px 0 0 0; width: auto; padding: 16px; + max-height: auto; } .new-message-composer textarea { @@ -235,6 +243,18 @@ p { /* display: block; */ } +.new-message-composer .text-box { + color: black; + background-color: #dcdcdc; + max-height: 32em; + overflow: scroll; + font-size: 16px; + border: 2px solid black; + padding: 8px; + margin: 0; + height: fit-content; +} + .grow-wrap { /* easy way to plop the elements on top of each other and have them both sized based on the tallest one's height */ display: grid; |