Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4248 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4247 stevensc 1
.header__option {
2
    color: gray;
3
    cursor: pointer;
4
    & > a {
5
        display: flex;
6
        flex-direction: column;
7
        align-items: center;
8
        justify-content: center;
9
    }
10
    & > h3 {
11
        display: none;
12
        margin: 0;
13
        font-size: 12px;
14
        font-weight: 400;
15
    }
16
    &:hover {
17
        color: #000;
18
    }
19
}
20
 
21
@media (min-width: 768px) {
22
    .header__option > h3 {
23
        display: initial;
24
    }
25
}