1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-05 15:47:20 +02:00

Fixed: Remote path mapping UI being partially hidden on smaller screens

This commit is contained in:
LarsHelo 2023-02-21 10:00:11 +01:00 committed by Qstick
parent c1e5990a58
commit 75035035e1
2 changed files with 13 additions and 4 deletions

View File

@ -8,11 +8,15 @@
}
.host {
flex: 0 0 300px;
@add-mixin truncate;
flex: 0 1 300px;
}
.path {
flex: 0 0 400px;
@add-mixin truncate;
flex: 0 1 400px;
}
.actions {

View File

@ -1,15 +1,20 @@
.remotePathMappingsHeader {
display: flex;
margin-bottom: 10px;
padding-right: 24px;
font-weight: bold;
}
.host {
flex: 0 0 300px;
@add-mixin truncate;
flex: 0 1 300px;
}
.path {
flex: 0 0 400px;
@add-mixin truncate;
flex: 0 1 400px;
}
.addRemotePathMapping {