forked from Transparency/kgroad-frontend2
48 lines
833 B
SCSS
48 lines
833 B
SCSS
.profile-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
&__links {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 46px;
|
|
|
|
&_right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
|
|
div {
|
|
padding: 2px 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 16px;
|
|
background: rgb(224, 237, 248);
|
|
|
|
color: rgb(23, 92, 211);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: rgb(50, 48, 58);
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
|
|
&__logout {
|
|
padding: 10px;
|
|
border: 1px solid rgb(230, 68, 82);
|
|
border-radius: 8px;
|
|
|
|
color: rgb(230, 68, 82);
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
}
|
|
}
|