guild_front/src/components/ProfileBreadcrumbs/profileBreadcrumbs.scss
2023-12-04 19:28:40 +03:00

43 lines
751 B
SCSS

.profileBreadcrumbs {
display: flex;
margin-bottom: 12px;
@media (max-width: 570px) {
margin-top: 15px;
}
a {
color: #5b6871;
font-weight: 400;
font-size: 13px;
line-height: 16px;
transition: 0.3s all ease;
position: relative;
margin-right: 20px;
display: flex;
align-items: center;
&:hover {
text-decoration: none;
color: #000000;
}
&:after {
content: "";
background-image: url("../../assets/icons/arrows/BreadcrumbsArrow.png");
background-repeat: no-repeat;
width: 7px;
height: 10px;
position: absolute;
right: -14px;
}
&:last-child {
margin-right: 0;
&:after {
background: none;
}
}
}
}