mirror of
https://github.com/dzeiocom/components.git
synced 2025-04-25 20:32:14 +00:00
35 lines
400 B
Stylus
35 lines
400 B
Stylus
@import '../config'
|
|
|
|
$height = 76px
|
|
|
|
.body-navbar
|
|
margin-top $height
|
|
|
|
.navbar
|
|
position fixed
|
|
left 0
|
|
top 0
|
|
height $height
|
|
width 100%
|
|
z-index 100
|
|
display flex
|
|
padding 16px
|
|
|
|
> ul
|
|
.userSpaceParent ul
|
|
display flex
|
|
|
|
.navbar
|
|
ul
|
|
list-style none
|
|
margin 0
|
|
padding 0
|
|
|
|
.mobileMenu
|
|
opacity 0
|
|
transition opacity $transition
|
|
pointer-events none
|
|
&.shown
|
|
opacity 1
|
|
pointer-events initial
|