lostplaces-frontend/components/03_Organisms/header/_header.scss

39 lines
677 B
SCSS
Raw Normal View History

2020-07-17 17:55:46 +02:00
.LP-Header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 70px;
2020-08-02 23:02:25 +02:00
height: 60px;
2020-07-17 17:55:46 +02:00
&__Logo {
2020-08-02 23:02:25 +02:00
height: 60px;
margin: 25px;
object-fit:cover;
max-height: 100%;
overflow: hidden;
.LP-Image{
height: 60px;
}
2020-07-17 17:55:46 +02:00
}
2020-08-02 23:02:25 +02:00
}
2020-07-17 17:55:46 +02:00
2020-08-02 23:02:25 +02:00
@media(max-width: $-viewport-medium){
2020-07-27 10:23:58 +02:00
.LP-Header__Logo{
2020-08-02 23:02:25 +02:00
width: 60px;
.LP-Image{
object-position: 0 0;
object-fit: cover;
}
}
}
@media(max-width: $-viewport-extra-small){
.LP-Header__Logo{
display: none;
}
.LP-Header__Navigation{
width: 100%;
2020-07-17 17:55:46 +02:00
}
}