Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3564 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3564 Rev 5280
Línea 1... Línea 1...
1
.applicationSidebar {
1
.applicationSidebar {
2
  width: 100%;
2
  width: 100%;
3
  margin-bottom: 1rem;
3
  margin-bottom: 1rem;
-
 
4
 
4
  button {
5
  button {
5
    width: 100%;
6
    width: 100%;
6
  }
7
  }
7
}
8
}
-
 
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
}
8
48