Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5429 stevensc 1
@use "./mixins.scss";
2
 
3
.company-info {
4
    @include mixins.widget;
5
    align-items: center;
6
    display: flex;
7
    flex-direction: column;
8
    gap: .5rem;
9
    padding: 1rem;
10
    text-align: center;
11
 
12
    img {
13
        border-radius: 50%;
14
        border: 2px solid $font-color;
15
        height: 150px;
16
        width: 150px;
17
    }
18
 
19
    h3 {
20
        color: $title-color;
21
        font-size: 1.1rem;
22
        font-weight: 600;
23
    }
24
 
25
    span {
26
        color: $subtitle-color
27
    }
28
 
29
    svg,
30
    b {
31
        color: $font-color;
32
    }
33
 
34
    .row {
35
        gap: .5rem;
36
    }
37
}