diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-02-11 21:53:20 +0100 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-02-11 21:53:20 +0100 |
commit | 51cad4f7fba199cdcda3ba18b68a25312e21c256 (patch) | |
tree | 15e40a919e3c7984db95e2be5a21098b0a086886 /app/javascript/styles | |
parent | 776e337b8d2aa66440bc4565617b5440ca781e1a (diff) | |
parent | d0fcf07436d158bcac2617d076a83d0aa49c39e6 (diff) |
Merge branch 'main' into glitch-soc/merge-upstream
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/admin.scss | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/app/javascript/styles/mastodon/admin.scss b/app/javascript/styles/mastodon/admin.scss index 92061585a..d28470747 100644 --- a/app/javascript/styles/mastodon/admin.scss +++ b/app/javascript/styles/mastodon/admin.scss @@ -1410,8 +1410,9 @@ a.sparkline { } &__button { + box-sizing: border-box; flex: 0 0 auto; - width: 100px; + width: 200px; padding: 15px; padding-right: 0; @@ -1427,4 +1428,38 @@ a.sparkline { color: $dark-text-color; } } + + @media screen and (max-width: 800px) { + border: 0; + + &__item { + flex-direction: column; + border: 0; + + &__button { + width: 100%; + padding: 15px 0; + } + + &__description { + padding: 0; + padding-bottom: 15px; + } + } + } +} + +.section-skip-link { + float: right; + + a { + color: $ui-highlight-color; + text-decoration: none; + + &:hover, + &:focus, + &:active { + text-decoration: underline; + } + } } |