diff options
| author | (quasar) nebula <qznebula@protonmail.com> | 2026-04-01 22:20:18 -0300 |
|---|---|---|
| committer | (quasar) nebula <qznebula@protonmail.com> | 2026-04-01 22:20:18 -0300 |
| commit | a7eb0797c9aaae199679101b370131c06a87dacd (patch) | |
| tree | 053fba0f8ef85a010b26983acc255cffabe1f4ad /src/static/css | |
| parent | 3ac7f1d61ad9abbab9377c49eb8eb0d0478e01bb (diff) | |
content, css: generateArtistGroupContributionsInfo: be a table
Diffstat (limited to 'src/static/css')
| -rw-r--r-- | src/static/css/features.css | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/src/static/css/features.css b/src/static/css/features.css index b0cb575d..410bf5b9 100644 --- a/src/static/css/features.css +++ b/src/static/css/features.css @@ -1219,21 +1219,26 @@ } } -/* Group-contributions tables */ +/* Group contributions tables */ @layer layout { .group-contributions-table { - display: inline-block; + margin-left: 40px; + border-collapse: collapse; } - .group-contributions-table .group-contributions-row { - display: flex; - justify-content: space-between; + .group-contributions-table td { + padding: 0 0 4px 0; + } + + .group-contributions-table .group-contributions-link-cell { + display: list-item; } - .group-contributions-table .group-contributions-metrics { - margin-left: 1.5ch; + .group-contributions-table .group-contributions-metrics-cell { + padding-left: 1.5ch; white-space: nowrap; + text-align: right; } } |