mirror of
https://github.com/TeamPiped/hugo-whisper-theme.git
synced 2024-08-14 23:57:00 +00:00
32 lines
439 B
SCSS
32 lines
439 B
SCSS
.logo {
|
|
display: none;
|
|
@include media-breakpoint-up(sm) {
|
|
display: block;
|
|
width: 70px;
|
|
}
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
a {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
.logo-mobile {
|
|
display: block;
|
|
width: 54px;
|
|
@include media-breakpoint-up(sm) {
|
|
display: none;
|
|
}
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
a {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|