diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-01-11 13:34:40 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-01-11 13:34:40 -0500 |
| commit | ea0392a2bb12c158f9167105752f8fa315cff47d (patch) | |
| tree | dec4545ccbe44c8e2baf6e633308359f40ac610a /ui/styles/textarea.css | |
| parent | 4e3ad13aca163e733724b205c250bdb67cc56c29 (diff) | |
| parent | 6d51f8568e337e768505ccfdef916b84dd6eb1b3 (diff) | |
Merge branch 'prop/stylize'
Diffstat (limited to 'ui/styles/textarea.css')
| -rw-r--r-- | ui/styles/textarea.css | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/ui/styles/textarea.css b/ui/styles/textarea.css new file mode 100644 index 0000000..c38de46 --- /dev/null +++ b/ui/styles/textarea.css @@ -0,0 +1,31 @@ +/* Message input */ +.create-message form { + display: flex; + flex-direction: row; + justify-content: flex-start; + align-items: stretch; +} + +.create-message textarea { + padding: 0.5rem; + border-radius: 0.5rem 0 0 0.5rem; + border: 1px solid var(--colour-input-border); + z-index: 1; /* Just to make the focus-active border go over the following button. */ + flex-grow: 1; + background-color: var(--colour-input-bg); + color: var(--colour-input-text); +} + +.create-message button { + border-radius: 0 0.5rem 0.5rem 0; + border: 1px solid var(--colour-input-border); + background-color: var(--colour-input-bg); + color: var(--colour-input-text); +} + +main { + display: flex; + flex-direction: column; + justify-content: flex-start; + align-items: stretch; +} |
