seleccion-articulos.component.scss
579 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
$primary: #aa006b;
.box-categorias {
height: calc(100% - 100px) !important;
}
.active {
background-color: white;
border-bottom: 3px solid $primary !important;
}
.border-bottom-effect {
border: none;
position: relative;
&:hover {
border: none;
}
&::after {
content: "";
position: absolute;
width: 0px;
height: 3px;
left: 50%;
bottom: 0;
background-color: $primary;
transition: all ease-in-out 0.2s;
}
&:hover::after {
width: 100%;
left: 0;
}
}
.card {
border: none;
}
.line-height-sm {
line-height: 1.2;
}