Fix horizontal jitter on loading screen

This commit is contained in:
Evan Hahn 2021-02-10 16:41:57 -06:00 committed by Scott Nonnenberg
parent e3f2b6b2de
commit ee97d1a0e0

View file

@ -319,12 +319,12 @@ $loading-height: 16px;
background-color: $ultramarine-brand-light; background-color: $ultramarine-brand-light;
color: $color-white; color: $color-white;
display: flex; display: flex;
align-items: center; flex-direction: column;
align-items: stretch;
justify-content: center;
user-select: none; user-select: none;
.content { .content {
margin-left: auto;
margin-right: auto;
text-align: center; text-align: center;
} }
.container { .container {
@ -336,6 +336,8 @@ $loading-height: 16px;
.message { .message {
-webkit-user-select: text; -webkit-user-select: text;
max-width: 35em; max-width: 35em;
margin-left: auto;
margin-right: auto;
} }
.dot { .dot {