web-remote/src/app/components/themes/themes.component.scss

33 lines
497 B
SCSS
Raw Normal View History

2022-12-21 16:27:47 +00:00
2020-08-27 05:07:14 +00:00
img {
width: 100%;
}
2020-01-23 20:10:11 +00:00
.selected {
background-color: rgb(235, 235, 235);
font-weight: 700;
}
.theme-container {
display: grid;
justify-content: space-evenly;
grid-template-columns: repeat(auto-fill, min(220px, 100%));
gap: 1rem;
}
.theme-card {
2022-12-21 16:27:47 +00:00
cursor: pointer;
justify-content: center;
}
2020-01-23 20:10:11 +00:00
.theme-title {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.theme-title:hover {
overflow: visible;
2020-01-23 20:10:11 +00:00
white-space: pre-wrap;
}