Skip to content
Snippets Groups Projects
Commit d67e70b2 authored by Greg Fodor's avatar Greg Fodor
Browse files

Cleanup from PR

parent db8493e2
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
@import 'hub-create'; @import 'hub-create';
@import 'info-dialog'; @import 'info-dialog';
$title-width: 350px;
* { * {
box-sizing: border-box; box-sizing: border-box;
} }
...@@ -53,15 +55,15 @@ body { ...@@ -53,15 +55,15 @@ body {
.header-content { .header-content {
padding: 1.5em 2.5em 1.5em 2.5em; padding: 1.5em 2.5em 1.5em 2.5em;
background-color: rgba(0, 0, 0, 0.85); background-color: $darkest-transparent;
min-height: 90px; min-height: 90px;
height: 90px; height: 90px;
display: flex; display: flex;
border-bottom: 1px solid #242424; border-bottom: 1px solid $darkest-grey;
&__title { &__title {
display: flex; display: flex;
width: 350px; width: $title-width;
@media (max-width: 768px) { @media (max-width: 768px) {
justify-content: center; justify-content: center;
...@@ -146,14 +148,14 @@ body { ...@@ -146,14 +148,14 @@ body {
display: none; display: none;
} }
padding: 0.5em; padding: 8px;
background-color: rgba(0, 0, 0, 0.85); background-color: $darkest-transparent;
text-align: center; text-align: center;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
border-bottom: 2px solid #242424; border-bottom: 2px solid $darkest-grey;
&__link { &__link {
color: white; color: white;
...@@ -252,7 +254,7 @@ body { ...@@ -252,7 +254,7 @@ body {
.footer-content { .footer-content {
padding: 1em 2.25em 1em 2.25em; padding: 1em 2.25em 1em 2.25em;
background-color: rgba(0, 0, 0, 0.85); background-color: $darkest-transparent;
min-height: 80px; min-height: 80px;
display: flex; display: flex;
border-top: 2px solid #242424; border-top: 2px solid #242424;
......
$dark-transparent: rgba(0, 0, 0, 0.4); $dark-transparent: rgba(0, 0, 0, 0.4);
$darker-transparent: rgba(0, 0, 0, 0.6); $darker-transparent: rgba(0, 0, 0, 0.6);
$darkest-transparent: rgba(0, 0, 0, 0.95); $darkest-transparent: rgba(0, 0, 0, 0.9);
$grey-text: rgba(192, 192, 192, 1.0); $grey-text: rgba(192, 192, 192, 1.0);
$light-text: rgba(240, 240, 240, 1.0); $light-text: rgba(240, 240, 240, 1.0);
$light-grey: lightgrey; $light-grey: lightgrey;
$dark-grey: rgba(128, 128, 128, 1.0); $dark-grey: rgba(128, 128, 128, 1.0);
$darker-grey: rgba(64, 64, 64, 1.0); $darker-grey: rgba(64, 64, 64, 1.0);
$darkest-grey: rgba(32, 32, 32, 1.0);
%default-font { %default-font {
font-family: 'Zilla Slab', sans-serif; font-family: 'Zilla Slab', sans-serif;
......
...@@ -100,11 +100,9 @@ class HomeRoot extends Component { ...@@ -100,11 +100,9 @@ class HomeRoot extends Component {
<div className="header-content__title__preview">preview</div> <div className="header-content__title__preview">preview</div>
</div> </div>
<div className="header-content__entry-code"> <div className="header-content__entry-code">
<div> <a className="header-content__entry-code__link" href="/link" rel="nofollow">
<a className="header-content__entry-code__link" href="/link"> <FormattedMessage id="home.have_entry_code" />
<FormattedMessage id="home.have_entry_code" /> </a>
</a>
</div>
</div> </div>
<div className="header-content__experiment"> <div className="header-content__experiment">
<div className="header-content__experiment__container"> <div className="header-content__experiment__container">
...@@ -141,7 +139,7 @@ class HomeRoot extends Component { ...@@ -141,7 +139,7 @@ class HomeRoot extends Component {
</div> </div>
<div className="header-subtitle"> <div className="header-subtitle">
<div> <div>
<a className="header-subtitle__link" href="/link"> <a className="header-subtitle__link" href="/link" rel="nofollow">
<FormattedMessage id="home.have_entry_code" /> <FormattedMessage id="home.have_entry_code" />
</a> </a>
</div> </div>
......
...@@ -89,6 +89,8 @@ class LinkRoot extends Component { ...@@ -89,6 +89,8 @@ class LinkRoot extends Component {
}; };
render() { render() {
// Note we use type "tel" for the input due to https://bugzilla.mozilla.org/show_bug.cgi?id=1005603
return ( return (
<IntlProvider locale={lang} messages={messages}> <IntlProvider locale={lang} messages={messages}>
<div className={styles.link}> <div className={styles.link}>
......
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