You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
381 B
SCSS
26 lines
381 B
SCSS
8 months ago
|
button {
|
||
|
line-height: 1.7;
|
||
|
}
|
||
|
|
||
|
.nav-title {
|
||
|
font-size: $uni-font-size-lg;
|
||
|
align-self: center;
|
||
|
margin-left: 20px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.uni-navbar {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.uni-navbar::after {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
bottom: -1px;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 1px;
|
||
|
background-color: #fff;
|
||
|
background: linear-gradient(90deg, #000, #fff, #000);
|
||
|
z-index: 99;
|
||
|
}
|