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 @@
user-select: none;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: .875rem;
color: $text-primary;
background: $ui-white;
}
[dir="ltr"] .language-select {
......
......@@ -154,6 +154,12 @@
}
}
.title {
font-size: 2rem;
font-weight: bold;
margin: 0.75rem 0;
}
.message-container-outer {
height: 30px;
overflow: hidden;
......
......@@ -147,13 +147,13 @@ class LoaderComponent extends React.Component {
src={bottomBlock}
/>
</div>
<h1 className={styles.title}>
<div className={styles.title}>
<FormattedMessage
defaultMessage="Loading Project"
description="Main loading message"
id="gui.loader.headline"
/>
</h1>
</div>
<div className={styles.messageContainerOuter}>
<div
className={styles.messageContainerInner}
......
......@@ -55,6 +55,7 @@
}
.language-menu {
box-sizing: border-box;
display: inline-flex;
width: $language-selector-width;
}
......
......@@ -27,6 +27,9 @@
line-height: 34px;
white-space: nowrap;
padding: 0 10px;
font-size: .75rem;
margin: 0;
font-weight: bold;
}
.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