kgroad-frontend2/src/widgets/ProfileNav/ProfileNav.scss
Vladislav Khorev e0e2f5470d renamed folders
2024-02-14 08:04:02 +00:00

73 lines
1.2 KiB
SCSS

.profile-nav {
margin-bottom: 55px;
display: flex;
align-items: center;
justify-content: space-between;
div {
display: flex;
align-items: center;
a:first-child {
margin-right: 46px;
}
a {
font-size: 20px;
font-weight: 500;
line-height: 24px;
color: rgb(151, 151, 151);
}
span {
margin-left: 16px;
padding: 2px 10px;
border-radius: 16px;
background-color: rgb(224, 237, 248);
font-size: 14px;
font-weight: 500;
line-height: 20px;
color: rgb(23, 92, 211);
cursor: auto;
text-decoration: none;
}
}
#profile-nav__link {
text-decoration: underline;
color: rgb(50, 48, 58);
}
#profile-nav__create-report {
padding: 10px;
border-radius: 8px;
background-color: rgb(57, 152, 232);
font-size: 16px;
font-weight: 800;
line-height: 19px;
color: rgb(255, 255, 255);
}
}
@media screen and (max-width: 550px) {
.profile-nav {
div {
a:first-child {
margin-right: 20px;
}
a {
font-size: 18px;
}
span {
margin-left: 6px;
}
}
button,
a:last-child {
display: none;
}
}
}