[UI Nav] Fixed position of the connected status dot.

This commit is contained in:
Fabio Manganiello 2023-10-23 15:57:47 +02:00
parent 5c22271e88
commit fd26f7fef3
Signed by: blacklight
GPG Key ID: D90FBA7F76362774
1 changed files with 18 additions and 5 deletions

View File

@ -193,6 +193,11 @@ nav {
top: 0;
left: 0;
z-index: 5;
.icon.status {
top: 0.75em !important;
left: 2em;
}
}
}
@ -319,6 +324,10 @@ nav {
}
}
.icon.status {
width: 1em;
}
&.collapsed {
display: flex;
flex-direction: column;
@ -354,15 +363,19 @@ nav {
box-shadow: none;
background: $nav-toggler-collapsed-bg;
@media screen and (max-width: #{$tablet - 1px}) {
background: $nav-toggler-collapsed-mobile-bg;
color: $nav-toggler-collapsed-mobile-fg;
}
.icon.status {
top: 0.75em;
left: 2em;
}
@include until($tablet) {
background: $nav-toggler-collapsed-mobile-bg;
color: $nav-toggler-collapsed-mobile-fg;
.icon.status {
top: 0.75em !important;
}
}
}
.footer {