Files
web/packages/design-system/lib/components/Divider/divider.module.css
Christian Andolf 9551a629fa refactor: move divider to design system
remove not used variants and duplicate colors
2025-06-13 11:27:50 +02:00

39 lines
568 B
CSS

.divider {
pointer-events: none;
border: 0;
}
.horizontal {
height: 1px;
width: 100%;
}
.vertical {
height: 100%;
width: 1px;
}
.burgundy {
background-color: var(--Scandic-Brand-Burgundy);
}
.pale {
background-color: var(--Primary-Dark-On-Surface-Text);
}
.peach {
background-color: var(--Primary-Light-On-Surface-Divider);
}
.white {
background-color: var(--UI-Opacity-White-100);
}
.Border-Divider-Subtle {
background-color: var(--Border-Divider-Subtle);
}
.Border-Divider-Default {
background-color: var(--Border-Divider-Default);
}