mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-19 21:46:50 -04:00
850bfdcf82
Co-Authored-By: Zak Saunders <1936903+thezak48@users.noreply.github.com>
39 lines
454 B
CSS
39 lines
454 B
CSS
.result {
|
|
display: flex;
|
|
padding: 3px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.poster {
|
|
width: 35px;
|
|
height: 50px;
|
|
}
|
|
|
|
.titles {
|
|
flex: 1 1 1px;
|
|
}
|
|
|
|
.title {
|
|
flex: 1 1 1px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.alternateTitle {
|
|
composes: title;
|
|
|
|
color: var(--disabledColor);
|
|
font-size: $smallFontSize;
|
|
}
|
|
|
|
.tagContainer {
|
|
composes: title;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.titles,
|
|
.title,
|
|
.alternateTitle {
|
|
@add-mixin truncate;
|
|
}
|
|
}
|