Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

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