Rev 5280 | AutorÃa | Ultima modificación | Ver Log |
@use "../../settings/mixins.scss";
.applicationSidebar {
width: 100%;
margin-bottom: 1rem;
button {
width: 100%;
}
}
.widget {
@include mixins.widget;
display: flex;
align-items: center;
justify-content: space-around;
padding: 1rem;
&__app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex: 100%;
text-align: center;
&__img {
width: 50px;
height: 50px;
border-radius: 50%;
}
&__title {
color: $font-color;
font-size: 0.9rem;
}
}
}
@include maxwidth("medium") {
.widget {
flex-direction: column;
&__app:not(:first-child) {
margin-top: 0.5rem;
}
}
}