mirror of
https://github.com/TeamPiped/hugo-whisper-theme.git
synced 2024-08-14 23:57:00 +00:00
33 lines
465 B
SCSS
33 lines
465 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: 40px;
|
|
padding: 10px 0 10px 0;
|
|
@include media-breakpoint-up(sm) {
|
|
display: none;
|
|
}
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
a {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|