27 lines
359 B
CSS
27 lines
359 B
CSS
.divider {
|
|
border-bottom-style: solid;
|
|
border-bottom-width: 1px;
|
|
height: 1px;
|
|
width: 100%;
|
|
}
|
|
|
|
.dotted {
|
|
border-bottom-style: dotted;
|
|
}
|
|
|
|
.burgundy {
|
|
border-bottom-color: var(--Scandic-Brand-Burgundy);
|
|
}
|
|
|
|
.peach {
|
|
border-bottom-color: var(--Theme-Primary-Light-On-Surface-Divider);
|
|
}
|
|
|
|
.opacity100 {
|
|
opacity: 1;
|
|
}
|
|
|
|
.opacity8 {
|
|
opacity: 0.08;
|
|
}
|