forked from platypush/platypush
[UI Nav] Fixed position of the connected status dot.
This commit is contained in:
parent
5c22271e88
commit
fd26f7fef3
1 changed files with 18 additions and 5 deletions
|
@ -193,6 +193,11 @@ nav {
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
|
|
||||||
|
.icon.status {
|
||||||
|
top: 0.75em !important;
|
||||||
|
left: 2em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -319,6 +324,10 @@ nav {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon.status {
|
||||||
|
width: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
&.collapsed {
|
&.collapsed {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -354,15 +363,19 @@ nav {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
background: $nav-toggler-collapsed-bg;
|
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 {
|
.icon.status {
|
||||||
top: 0.75em;
|
top: 0.75em;
|
||||||
left: 2em;
|
left: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@include until($tablet) {
|
||||||
|
background: $nav-toggler-collapsed-mobile-bg;
|
||||||
|
color: $nav-toggler-collapsed-mobile-fg;
|
||||||
|
|
||||||
|
.icon.status {
|
||||||
|
top: 0.75em !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer {
|
.footer {
|
||||||
|
|
Loading…
Reference in a new issue