Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
@use './mixins.scss';
.profile-attr {
@include mixins.widget;
padding: 1rem;
display: flex;
flex-direction: column;
gap: .5rem;
span,
p {
color: $font-color;
}
ul {
display: flex;
flex-wrap: wrap;
gap: .5rem;
li {
display: inline-flex;
width: fit-content;
span {
background-color: $font-color;
border-radius: 30px;
color: $bg-color;
font-size: 14px;
font-weight: 600;
padding: .5rem 1rem;
width: fit-content;
}
}
}
&-header {
display: flex;
align-items: center;
justify-content: space-between;
h2 {
color: $title-color;
font-size: 18px;
font-weight: 600;
}
}
}