diff options
| author | 2024-07-31 16:03:34 +0200 | |
|---|---|---|
| committer | 2024-07-31 15:03:34 +0100 | |
| commit | 38f041cea1ba0cd3492f351353a29aa5b73e2731 (patch) | |
| tree | bdd055d5cf7d9c06523c694cb4abe86d220960d0 /web/source/settings/style.css | |
| parent | [feature] Object store custom URL (S3) (#3046) (diff) | |
| download | gotosocial-38f041cea1ba0cd3492f351353a29aa5b73e2731.tar.xz | |
[feature] Allow users to export data via the settings panel (#3140)
* [feature] Allow users to export data via the settings panel
* rename/move some stuff
Diffstat (limited to 'web/source/settings/style.css')
| -rw-r--r-- | web/source/settings/style.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/web/source/settings/style.css b/web/source/settings/style.css index 9650f7466..3d1545634 100644 --- a/web/source/settings/style.css +++ b/web/source/settings/style.css @@ -1464,6 +1464,39 @@ button.tab-button { } } +.export-data { + .export-buttons-wrapper { + display: grid; + max-width: fit-content; + gap: 0.5rem; + + .stats-and-button { + display: grid; + grid-template-columns: 13rem 1fr; + align-items: center; + gap: 0.25rem; + + .mutation-button { + width: 100%; + overflow-x: hidden; + + button { + font-size: 1rem; + width: 100%; + } + } + } + + @media screen and (max-width: 35rem) { + gap: 1rem; + + .stats-and-button { + grid-template-columns: auto; + } + } + } +} + @media screen and (orientation: portrait) { .reports .report .byline { grid-template-columns: 1fr; |
