1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-22 18:00:06 +01:00

menu fixes

This commit is contained in:
Matthias Kretschmann 2020-05-19 23:32:30 +02:00
parent b9bab0f7d0
commit 5c2a78dae2
Signed by: m
GPG Key ID: 606EEEF3C479A91F
6 changed files with 28 additions and 19 deletions

View File

@ -4,11 +4,11 @@
.hamburger {
width: 24px;
height: 24px;
display: block;
display: inline-block;
position: relative;
transform: rotate(0deg);
cursor: pointer;
margin-top: 6px;
margin-top: $spacer / 2;
}
.hamburgerLine {

View File

@ -4,6 +4,7 @@
padding: $spacer / 2;
vertical-align: middle;
display: inline-block;
margin: 0;
margin-right: $spacer / 4;
&:focus {

View File

@ -4,7 +4,7 @@
position: absolute;
left: $spacer / 2;
right: $spacer / 2;
top: -($spacer / 4);
top: $spacer / 4;
z-index: 10;
input {

View File

@ -2,9 +2,6 @@
@import 'mixins';
.header {
margin-top: ($spacer/2);
margin-bottom: ($spacer/2);
@media (min-width: $screen-sm) and (min-height: 500px) {
position: fixed;
width: 100%;
@ -21,6 +18,7 @@
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 $spacer;
@media (min-width: $screen-md) {
@ -32,21 +30,19 @@
/////////////////////////////////////
.title {
margin-top: $spacer / 5;
margin-bottom: 0;
svg {
fill: $brand-grey-light;
width: 160px;
height: 30px;
margin: 0;
transition: 0.2s $easing;
}
a {
display: block;
@include hide-text;
width: 60px;
overflow: hidden;
@media (min-width: $screen-sm) {
width: 212px;
}
&:hover,
&:focus {
svg {
@ -56,6 +52,15 @@
}
}
.logo {
width: 191px;
height: 36px;
max-width: unset;
fill: $brand-grey-light;
margin: 0;
transition: 0.2s $easing;
}
.nav {
display: inline-block;
}

View File

@ -16,7 +16,7 @@ export default class Header extends PureComponent {
<div className={styles.headerContent}>
<h1 className={styles.title}>
<Link to="/">
<Logo /> kremalicious
<Logo className={styles.logo} /> kremalicious
</Link>
</h1>

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 21 KiB