Skip to content

Custom Border Thickness

The button has a default border thickness of --o-border-size-2. You can change this value by using the --o_border-size custom property.

Borderless button site wide
.o-btn {
--o_border-size: 0;
}
Thick border modifier class
.o-btn-thick-border {
--o_border-size: var(--o-border-size-4);
}