Skip to content
Snippets Groups Projects
Commit 0a049d1a authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Do not rely on browser default styles because www resets

And make a few CSS rules a bit more specific to avoid other style defaults from www
parent 96071be1
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
user-select: none; user-select: none;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: .875rem; font-size: .875rem;
color: $text-primary;
background: $ui-white;
} }
[dir="ltr"] .language-select { [dir="ltr"] .language-select {
......
...@@ -154,6 +154,12 @@ ...@@ -154,6 +154,12 @@
} }
} }
.title {
font-size: 2rem;
font-weight: bold;
margin: 0.75rem 0;
}
.message-container-outer { .message-container-outer {
height: 30px; height: 30px;
overflow: hidden; overflow: hidden;
......
...@@ -147,13 +147,13 @@ class LoaderComponent extends React.Component { ...@@ -147,13 +147,13 @@ class LoaderComponent extends React.Component {
src={bottomBlock} src={bottomBlock}
/> />
</div> </div>
<h1 className={styles.title}> <div className={styles.title}>
<FormattedMessage <FormattedMessage
defaultMessage="Loading Project" defaultMessage="Loading Project"
description="Main loading message" description="Main loading message"
id="gui.loader.headline" id="gui.loader.headline"
/> />
</h1> </div>
<div className={styles.messageContainerOuter}> <div className={styles.messageContainerOuter}>
<div <div
className={styles.messageContainerInner} className={styles.messageContainerInner}
......
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
} }
.language-menu { .language-menu {
box-sizing: border-box;
display: inline-flex; display: inline-flex;
width: $language-selector-width; width: $language-selector-width;
} }
......
...@@ -27,6 +27,9 @@ ...@@ -27,6 +27,9 @@
line-height: 34px; line-height: 34px;
white-space: nowrap; white-space: nowrap;
padding: 0 10px; padding: 0 10px;
font-size: .75rem;
margin: 0;
font-weight: bold;
} }
.menu-item.active, .menu-item.active,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment