mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-14 15:44:20 -04:00
(cherry picked from commit dd09f31abb4dd3f699bcff0a47577075300c70ee) Fix AuthorFolderAsRootFolderValidator (cherry picked from commit 0ce81e1ab69d43fde382cc4ae22cd46fe626dea7)
36 lines
475 B
CSS
36 lines
475 B
CSS
.optionText {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex: 1 0 0;
|
|
|
|
&.isMobile {
|
|
display: block;
|
|
|
|
.freeSpace {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.value {
|
|
display: flex;
|
|
}
|
|
|
|
.authorFolder {
|
|
flex: 0 0 auto;
|
|
color: var(--disabledColor);
|
|
}
|
|
|
|
.freeSpace {
|
|
margin-left: 15px;
|
|
color: var(--darkGray);
|
|
font-size: $smallFontSize;
|
|
}
|
|
|
|
.isMissing {
|
|
margin-left: 15px;
|
|
color: var(--dangerColor);
|
|
font-size: $smallFontSize;
|
|
}
|