diff options
| author | winter | 2025-01-18 16:01:25 +0000 |
|---|---|---|
| committer | winter | 2025-01-18 16:01:25 +0000 |
| commit | c0e65d0446f928b30eecc858c5cf9a8eb1a364c1 (patch) | |
| tree | bb22cd9b3e6b4a05f9bf2b41393f3aaa9048f4bb /static | |
| parent | ba61c6435b668375a411716f3a35447aa38b03a4 (diff) | |
implement profile editing
Diffstat (limited to 'static')
| -rw-r--r-- | static/misc.css | 5 | ||||
| -rw-r--r-- | static/profile.css | 14 |
2 files changed, 18 insertions, 1 deletions
diff --git a/static/misc.css b/static/misc.css index 4271cbe..e0d3851 100644 --- a/static/misc.css +++ b/static/misc.css @@ -87,6 +87,11 @@ span.unreadIndicator { } } +pre { + font-family: inherit; + font-size: inherit; +} + [hidden] { display: none; } diff --git a/static/profile.css b/static/profile.css index 0814cbb..3c4c7cc 100644 --- a/static/profile.css +++ b/static/profile.css @@ -24,7 +24,7 @@ } } - .followInfo { + .profileActions { display: grid; justify-content: end; align-items: baseline; @@ -39,3 +39,15 @@ } } } + +form.fullProfile { + max-width: unset; + input[type="text"], + textarea { + max-width: unset; + width: 100%; + } + textarea { + height: 16lh; + } +} |
