Rev 4262 | Rev 4427 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
.header__option {
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: gray;
position: relative;
padding: 10px 0;
height: 100%;
&:hover,
&.active {
color: #000;
&::after {
transform: scaleX(1);
}
}
&::after {
border-bottom: 2px solid #000;
content: "";
bottom: -1px;
left: 0;
position: absolute;
transform: scaleX(0);
transition: transform 0.2s ease-in-out;
width: 100%;
}
& > span {
display: none;
margin: 0;
font-size: 12px;
font-weight: 400;
}
}
.user__options-dropdown {
position: absolute;
right: 0;
min-width: 220px;
top: calc(100% + 10px);
background-color: #fff;
border-radius: 5px;
border-top-right-radius: 0;
box-shadow: 0 0 0 1px rgb(0 0 0 / 5%), 0 3px 3px rgb(0 0 0 / 30%);
transition: all 0.2s ease-in-out;
&.fadeOut {
transform: scaleY(0);
opacity: 0;
}
&.fadeIn {
transform: scaleY(1);
opacity: 1;
}
ul {
display: flex;
flex-direction: column;
gap: 0.5rem;
a {
white-space: nowrap;
}
}
}
.user__options-description {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
padding: 10px;
.btn__profile {
padding: 2px;
border: 1px solid #7405f9;
width: 100%;
border-radius: 30px;
color: #7405f9;
font-size: 0.9rem;
text-align: center;
transition: all 0.1s ease-in;
&:hover {
border: 2px solid #7405f9;
}
}
}
.user__options-item {
padding: 1rem 10px;
border-top: 1px solid rgba(0, 0, 0, 0.08);
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
gap: 0.5rem;
h3 {
font-weight: 600;
}
ul {
display: flex;
flex-direction: column;
gap: 0.5rem;
a {
color: gray !important;
&:hover {
text-decoration: underline !important;
}
}
}
}
.user__options-info {
display: flex;
align-items: center;
gap: 0.5rem;
width: 100%;
h3 {
font-weight: 600;
font-size: 1.1rem;
}
}
.user__option-icon {
height: 16px;
width: 16px;
}
@media (min-width: 768px) {
.header__option {
min-width: 60px;
& > span {
display: flex;
align-items: center;
}
}
}