Shian/src/sass/components/_mediaitem.scss
Damillora 2a23ca143f perf(shian): overhaul styling to minimize CSS processing
BREAKING CHANGE: several styles are rewritten completely for performance reasons. please update accordingly.
2021-04-22 20:32:54 +07:00

24 lines
341 B
SCSS

.media-item {
padding: 0.25rem 1rem;
width: 100%;
@include transition;
&:hover {
background-color: var(--highlight-bg-color);
}
&__caption {
font-size: $text-2xl;
@include my(0.25rem);
}
&__content {
width: 100%;
@include my(0.5rem);
display: block;
}
&__text {
@include my(0.25rem);
}
}