mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-03-23 22:08:08 +00:00
35 lines
427 B
CSS
35 lines
427 B
CSS
.result {
|
|
display: flex;
|
|
padding: 3px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.poster {
|
|
width: 35px;
|
|
height: 35px;
|
|
}
|
|
|
|
.titles {
|
|
flex: 1 1 1px;
|
|
}
|
|
|
|
.title {
|
|
flex: 1 1 1px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.alternateTitle {
|
|
flex: 1 1 1px;
|
|
margin-left: 5px;
|
|
color: $disabledColor;
|
|
font-size: $smallFontSize;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.titles,
|
|
.title,
|
|
.alternateTitle {
|
|
@add-mixin truncate;
|
|
}
|
|
}
|