diff options
| author | Syndamia <kamen@syndamia.com> | 2025-02-09 20:20:16 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2025-02-09 20:20:16 +0200 |
| commit | 230cd1bcb845908373e6d80ae0b10e51662eaba2 (patch) | |
| tree | e33c2f09dd83f79f8f393620cef6192a57753968 /views/styles.css | |
| parent | 6744c182446b25b49bb1742832308782a14260be (diff) | |
| download | nowayforward_human-230cd1bcb845908373e6d80ae0b10e51662eaba2.tar nowayforward_human-230cd1bcb845908373e6d80ae0b10e51662eaba2.tar.gz nowayforward_human-230cd1bcb845908373e6d80ae0b10e51662eaba2.zip | |
feat(user/update): Move buttons to side and replace text with icons
Diffstat (limited to 'views/styles.css')
| -rw-r--r-- | views/styles.css | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/views/styles.css b/views/styles.css index 0ec7895..cd151d0 100644 --- a/views/styles.css +++ b/views/styles.css @@ -449,18 +449,44 @@ hr.new-section { height: 4em; } +#user-main { + display: flex; + gap: 1em; +} + +#user-main > * { + text-align: unset; +} + +#user-main > :nth-child(2) { + flex: 1; +} + #user-buttons { margin: 0 1em 2em 1em; display: flex; - flex-direction: row; - gap: 1em; + flex-direction: column; + gap: 0.5em; + float: right; +} + +.standalone-button { + border: none; + box-shadow: none; +} + +.standalone-button svg { + height: 1.5em; + vertical-align: middle; } #user-nav { display: flex; flex-direction: row; gap: 1em; + margin-left: -1em; margin-bottom: 2em; + width: calc(100% + 2em); } #user-nav button { |
