Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5828 stevensc 1
@use "../../settings/mixins.scss";
2
 
3564 stevensc 3
.applicationSidebar {
4
  width: 100%;
5
  margin-bottom: 1rem;
5280 stevensc 6
 
3564 stevensc 7
  button {
8
    width: 100%;
9
  }
10
}
5280 stevensc 11
 
12
.widget {
5828 stevensc 13
  @include mixins.widget;
5280 stevensc 14
  display: flex;
15
  align-items: center;
16
  justify-content: space-around;
5828 stevensc 17
  padding: 1rem;
5280 stevensc 18
 
19
  &__app {
20
    display: flex;
21
    flex-direction: column;
22
    align-items: center;
23
    justify-content: center;
24
    flex: 100%;
25
    text-align: center;
26
 
27
    &__img {
28
      width: 50px;
29
      height: 50px;
30
      border-radius: 50%;
31
    }
32
 
33
    &__title {
34
      color: $font-color;
35
      font-size: 0.9rem;
36
    }
37
  }
38
}
39
 
40
@include maxwidth("medium") {
41
  .widget {
42
    flex-direction: column;
43
 
44
    &__app:not(:first-child) {
45
      margin-top: 0.5rem;
46
    }
47
  }
48
}