Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
6737 stevensc 1
.btn {
2
    font-size: 0.95rem;
3
    height: fit-content;
4
    line-height: 1;
5
}
6
 
7
.btn-primary {
8
    background-color: $button-bg;
9
    border-radius: $border-radius;
10
    color: $button-text-color !important;
11
    border: none !important;
12
    &:hover {
13
        background-color: $button-bg-hover;
14
    }
15
}
16
 
17
.btn-secondary {
18
    background: $button-bg-secondary;
19
    border: 1px solid $border-primary;
20
    border-radius: $border-radius;
21
    color: $button-text-color-secondary !important;
22
    &:hover {
23
        background-color: $button-bg-secondary-hover;
24
        border-color: $border-trasnparent;
25
    }
26
}
27
 
28
.btn-tertiary {
29
    background-color: $button-bg-tertiary;
30
    border-radius: $border-radius;
31
    border-color: #f4f4f4;
32
    color: $button-text-color-tertiary !important;
33
    &:hover {
34
        background: #d4d4d4;
35
        border: 1px solid $border-primary;
36
        color: $border-primary !important;
37
    }
38
}