diff options
author | Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> | 2023-07-31 08:44:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-31 08:44:45 +0000 |
commit | d58c5425799335ea57f27461f99ddd1078e9b2de (patch) | |
tree | 917fac7672c6204e9b928385f856a5156e9dbec2 /web_src | |
parent | 72363be7caa3c253e08daf058e5aebd6e795f0ef (diff) | |
download | gitea-d58c5425799335ea57f27461f99ddd1078e9b2de.tar.gz gitea-d58c5425799335ea57f27461f99ddd1078e9b2de.zip |
Add 'Show on a map' button to Location in profile, fix layout (#26214)
Not too important, but I think that it'd be a pretty neat touch.
Also fixes some layout bugs introduced by a previous PR.
---------
Co-authored-by: Gusted <postmaster@gusted.xyz>
Co-authored-by: Caesar Schinas <caesar@caesarschinas.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/css/user.css | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/web_src/css/user.css b/web_src/css/user.css index 9fcdb3814a..ab94c826b2 100644 --- a/web_src/css/user.css +++ b/web_src/css/user.css @@ -22,18 +22,16 @@ .user.profile .ui.card .extra.content > ul > li { padding: 10px; + display: flex; list-style: none; + align-items: center; + gap: 0.25em; } .user.profile .ui.card .extra.content > ul > li:not(:last-child) { border-bottom: 1px solid var(--color-secondary); } -.user.profile .ui.card .extra.content > ul > li .svg { - margin-left: 1px; - margin-right: 5px; -} - .user.profile .ui.card .extra.content > ul > li.follow .ui.button { width: 100%; } |