Shian/src/sass/components/_gameitem.scss

39 lines
588 B
SCSS

.game-item {
padding: 0.25rem 1rem;
width: 100%;
display: flex;
flex-direction: column;
@include transition;
@include screen(lg) {
flex-direction: row;
}
&:hover {
background-color: var(--highlight-bg-color);
}
&__title {
flex-grow: 1;
}
&__caption {
font-size: $text-2xl;
@include my(0.25rem);
}
&__content {
@include my(0.5rem);
display: block;
flex-shrink: 1;
}
&__text {
@include my(0.25rem);
white-space: nowrap;
text-align: right;
}
&__icon {
padding: 0.5rem;
vertical-align: middle;
}
}