diff --git a/build/img/Close.svg b/build/img/Close.svg new file mode 100644 index 0000000..5fcc2d4 --- /dev/null +++ b/build/img/Close.svg @@ -0,0 +1,3 @@ + + + diff --git a/build/main.js b/build/main.js index 5f14a0b..a525cce 100644 --- a/build/main.js +++ b/build/main.js @@ -30812,7 +30812,7 @@ var Header = (function (_Component) { ), _react2['default'].createElement( 'h1', - { className: 'regular-medium' }, + null, 'Hawk' ), i diff --git a/build/style.css b/build/style.css index 2fa5f8a..b9602aa 100644 --- a/build/style.css +++ b/build/style.css @@ -57,13 +57,9 @@ } .icon-cross { display: block; - background: url(/img/Plus.svg) no-repeat; - width: 24px; - height: 24px; - transform: rotate(45deg); -} -.icon-cross svg * { - fill: white; + background: url(/img/Close.svg) no-repeat; + width: 30px; + height: 30px; } .icon-back { display: block; @@ -369,6 +365,7 @@ header { header h1 { font-size: 2.3rem; font-style: italic; + font-weight: 300; text-align: center; flex: 1; } @@ -381,7 +378,6 @@ header button { margin-top: -1rem; } header button i { - padding: 2rem; background-position: center; } .menu { diff --git a/src/img/Close.svg b/src/img/Close.svg new file mode 100644 index 0000000..5fcc2d4 --- /dev/null +++ b/src/img/Close.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/js/components/header.js b/src/js/components/header.js index 23549fe..7ab073f 100644 --- a/src/js/components/header.js +++ b/src/js/components/header.js @@ -21,7 +21,7 @@ export default class Header extends Component { -

Hawk

+

Hawk

{i} diff --git a/src/less/components/header.less b/src/less/components/header.less index d09f0f2..071a2af 100644 --- a/src/less/components/header.less +++ b/src/less/components/header.less @@ -16,6 +16,7 @@ header { h1 { font-size: 2.3rem; font-style: italic; + font-weight: 300; text-align: center; flex: 1; @@ -31,7 +32,6 @@ header { margin-top: -1rem; i { - padding: 2rem; background-position: center; } } diff --git a/src/less/icons.less b/src/less/icons.less index b7f2e9c..eb60ce9 100644 --- a/src/less/icons.less +++ b/src/less/icons.less @@ -65,11 +65,10 @@ } .icon-cross { - .icon-plus; - transform: rotate(45deg); - svg * { - fill: white; - } + .icon; + background: url(/img/Close.svg) no-repeat; + width: 30px; + height: 30px; } .icon-back {