diff options
author | kibigo! <marrus-sh@users.noreply.github.com> | 2017-10-11 10:43:10 -0700 |
---|---|---|
committer | kibigo! <marrus-sh@users.noreply.github.com> | 2017-10-11 10:43:10 -0700 |
commit | 8d6b9ba4946b5b159af0fbd130637a226a286796 (patch) | |
tree | 9def26711682d29338cfa1b081822029a01669eb /app/javascript/styles/basics.scss | |
parent | f0a2a6c875e9294f0ea1d4c6bc90529e41a2dc37 (diff) | |
parent | 476e79b8e340c9103352a0799e102e4aca1a5593 (diff) |
Merge upstream 2.0ish #165
Diffstat (limited to 'app/javascript/styles/basics.scss')
-rw-r--r-- | app/javascript/styles/basics.scss | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/app/javascript/styles/basics.scss b/app/javascript/styles/basics.scss index 96f0023c3..b829191ad 100644 --- a/app/javascript/styles/basics.scss +++ b/app/javascript/styles/basics.scss @@ -29,7 +29,8 @@ body { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", mastodon-font-sans-serif, sans-serif; } - &.app-body { + &.app-body, + &.error { position: fixed; width: 100%; height: 100%; @@ -42,6 +43,11 @@ body { padding-bottom: 0; } + &.tag-body { + background: darken($ui-base-color, 8%); + padding-bottom: 0; + } + &.embed { background: transparent; margin: 0; @@ -67,13 +73,16 @@ body { text-align: center; color: $ui-primary-color; padding: 20px; + display: flex; + justify-content: center; + align-items: center; .dialog img { display: block; - margin: 0 auto; max-width: 470px; width: 100%; height: auto; + margin-top: -120px; } .dialog h1 { @@ -94,9 +103,12 @@ button { } .app-holder { - display: flex; - width: 100%; - height: 100%; - align-items: center; - justify-content: center; + &, + & > div { + display: flex; + width: 100%; + height: 100%; + align-items: center; + justify-content: center; + } } |