mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
100 lines
1.7 KiB
SCSS
100 lines
1.7 KiB
SCSS
.container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
font-weight: 500;
|
|
height: 120px;
|
|
}
|
|
|
|
.spacer {
|
|
flex: 1;
|
|
}
|
|
|
|
.plugs {
|
|
display: flex;
|
|
user-select: none;
|
|
font: $font_16_medium;
|
|
text-transform: uppercase;
|
|
|
|
> a,
|
|
> div {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
padding: $gap;
|
|
cursor: pointer;
|
|
transition: color 0.25s;
|
|
text-decoration: none;
|
|
color: white;
|
|
|
|
&:hover {
|
|
color: $red;
|
|
}
|
|
|
|
&::after {
|
|
content: ' ';
|
|
margin-left: $spc;
|
|
background: white;
|
|
width: 4px;
|
|
height: $gap;
|
|
display: block;
|
|
opacity: 0.2;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
&:first-child {
|
|
padding-left: $spc + $gap;
|
|
}
|
|
|
|
&:last-child {
|
|
// padding-right: 0;
|
|
|
|
// &::after {
|
|
// display: none;
|
|
// }
|
|
}
|
|
}
|
|
}
|
|
|
|
.profile {
|
|
padding: 5px 10px;
|
|
box-shadow: white 0 0 0 1px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.user_button {
|
|
align-items: center;
|
|
border-radius: $input_radius;
|
|
font: $font_16_semibold;
|
|
text-transform: uppercase;
|
|
flex: 0 !important;
|
|
cursor: pointer;
|
|
margin-left: $gap;
|
|
white-space: nowrap;
|
|
box-shadow: inset transparentize($content_bg, 0.8) 0 0 0 1px;
|
|
background: transparentize($content_bg, 0.1);
|
|
padding: 0 0 0 $gap;
|
|
}
|
|
|
|
.user_avatar {
|
|
@include outer_shadow();
|
|
|
|
flex: 0 0 32px;
|
|
width: 32px;
|
|
height: 32px;
|
|
background: white;
|
|
border-radius: $radius;
|
|
margin-left: ($gap + 2px) !important;
|
|
background: 50% 50% no-repeat $wisegreen;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-size: cover;
|
|
|
|
svg {
|
|
fill: #222222;
|
|
stroke: #222222;
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
}
|