nitro-react/src/components/navigator/NavigatorView.scss

62 lines
1.0 KiB
SCSS
Raw Normal View History

2021-04-19 18:34:31 +02:00
.nitro-navigator {
2021-09-22 21:01:56 +02:00
width: $navigator-width;
height: $navigator-height;
2021-04-19 18:34:31 +02:00
2022-01-12 03:51:48 +01:00
.navigator-grid {
.navigator-item {
.badge {
width: 35px;
min-width: 35px;
}
}
2021-08-13 08:56:39 +02:00
2022-01-12 03:51:48 +01:00
&:not(.two-columns) {
.navigator-item {
&:nth-child(odd) {
background-color: $grid-active-bg-color;
}
}
}
&.two-columns {
.navigator-item {
&:nth-child(4n-2),
&:nth-child(4n-3) {
background: $grid-active-bg-color;
}
}
}
2021-08-13 08:56:39 +02:00
}
}
2022-01-12 03:51:48 +01:00
.nitro-navigator-doorbell,
2021-08-13 08:56:39 +02:00
.nitro-navigator-password {
width: 250px;
2022-01-12 03:51:48 +01:00
}
2021-08-13 08:56:39 +02:00
2022-01-12 03:51:48 +01:00
.nitro-room-info {
width: $room-info-width;
2021-08-13 08:56:39 +02:00
}
2022-01-12 03:51:48 +01:00
.nitro-room-link {
width: 400px;
}
.nitro-room-settings {
width: 400px;
.list-container {
2022-03-16 18:58:11 +01:00
height: 100px;
2022-01-12 03:51:48 +01:00
.list-item {
background-color: $grid-active-bg-color;
}
}
}