diff options
author | Starfall <root@starfall.blue> | 2019-12-29 17:53:54 -0600 |
---|---|---|
committer | Starfall <root@starfall.blue> | 2019-12-29 17:53:54 -0600 |
commit | c0c9529df269816f52915a9802e5e30fbce9576b (patch) | |
tree | 077a7a12c69b18dafd3db3226f4beac477d0f49f /app/javascript/styles | |
parent | 9ee65e89d547ae4a5bc0a5bdb59316ba5c061cfd (diff) | |
parent | 22daf24600d8e99e4569740ee5836d25c70c1e8b (diff) |
Merge branch 'glitch'
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/mastodon/admin.scss | 31 | ||||
-rw-r--r-- | app/javascript/styles/mastodon/components.scss | 1 |
2 files changed, 26 insertions, 6 deletions
diff --git a/app/javascript/styles/mastodon/admin.scss b/app/javascript/styles/mastodon/admin.scss index de95d82bf..cba552433 100644 --- a/app/javascript/styles/mastodon/admin.scss +++ b/app/javascript/styles/mastodon/admin.scss @@ -181,18 +181,39 @@ $content-width: 840px; padding-top: 30px; } - h2 { - color: $secondary-text-color; - font-size: 24px; - line-height: 28px; - font-weight: 400; + &-heading { + display: flex; + padding-bottom: 40px; border-bottom: 1px solid lighten($ui-base-color, 8%); margin-bottom: 40px; + flex-wrap: wrap; + align-items: center; + + justify-content: space-between; + + &-actions { + display: inline-flex; + + & > * { + margin-left: 5px; + } + } + @media screen and (max-width: $no-columns-breakpoint) { border-bottom: 0; padding-bottom: 0; + } + } + + h2 { + color: $secondary-text-color; + font-size: 24px; + line-height: 28px; + font-weight: 400; + + @media screen and (max-width: $no-columns-breakpoint) { font-weight: 700; } } diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index 0ec25e3f8..01a633c5f 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -2512,7 +2512,6 @@ a.account__display-name { overflow-x: hidden; flex: 1 1 auto; -webkit-overflow-scrolling: touch; - will-change: transform; // improves perf in mobile Chrome &.optionally-scrollable { overflow-y: auto; |