34 lines
441 B
SCSS
34 lines
441 B
SCSS
|
.logo {
|
||
|
display: none;
|
||
|
@include media-breakpoint-up(sm) {
|
||
|
display: block;
|
||
|
width: 120px;
|
||
|
}
|
||
|
img {
|
||
|
width: 100%;
|
||
|
height: auto;
|
||
|
}
|
||
|
a {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.logo-mobile {
|
||
|
display: block;
|
||
|
width: 30px;
|
||
|
@include media-breakpoint-up(sm) {
|
||
|
display: none;
|
||
|
}
|
||
|
img {
|
||
|
width: 100%;
|
||
|
height: auto;
|
||
|
}
|
||
|
a {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
}
|