17 lines
245 B
SCSS
Vendored
17 lines
245 B
SCSS
Vendored
// notes.scss
|
|
|
|
.h-entry .note {
|
|
width: $mainWidth;
|
|
}
|
|
|
|
@media screen and (max-width: $mainWidth) {
|
|
.h-entry .note {
|
|
width: 95vw;
|
|
|
|
.e-content {
|
|
img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|