mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
72 lines
1.1 KiB
SCSS
72 lines
1.1 KiB
SCSS
.container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
font-weight: 500;
|
|
height: 120px;
|
|
z-index: 5;
|
|
}
|
|
|
|
.spacer {
|
|
flex: 1;
|
|
}
|
|
|
|
.plugs {
|
|
display: flex;
|
|
user-select: none;
|
|
text-transform: uppercase;
|
|
align-items: center;
|
|
|
|
& > a.item,
|
|
& > div.item {
|
|
font: $font_16_medium;
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
padding: $gap;
|
|
cursor: pointer;
|
|
transition: color 0.25s;
|
|
text-decoration: none;
|
|
color: white;
|
|
white-space: nowrap;
|
|
|
|
&:hover {
|
|
color: $red;
|
|
}
|
|
|
|
&:first-child {
|
|
padding-left: $spc + $gap;
|
|
}
|
|
|
|
&::after {
|
|
content: ' ';
|
|
margin-left: $spc;
|
|
background: white;
|
|
width: 4px;
|
|
height: $gap;
|
|
display: block;
|
|
opacity: 0.2;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
&:last-child {
|
|
// padding-right: 0;
|
|
|
|
// &::after {
|
|
// display: none;
|
|
// }
|
|
}
|
|
}
|
|
}
|
|
|
|
.profile {
|
|
padding: 5px 10px;
|
|
box-shadow: white 0 0 0 1px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.user_button {
|
|
flex: 0;
|
|
padding-left: $gap / 2;
|
|
cursor: pointer;
|
|
}
|