18 lines
289 B
CSS
18 lines
289 B
CSS
/* Switch Group styles */
|
|
.switch-group {
|
|
@apply flex flex-col gap-6;
|
|
}
|
|
|
|
.switch-group__items {
|
|
@apply flex gap-4;
|
|
}
|
|
|
|
/* Orientation modifiers */
|
|
.switch-group--horizontal .switch-group__items {
|
|
@apply flex-row;
|
|
}
|
|
|
|
.switch-group--vertical .switch-group__items {
|
|
@apply flex-col;
|
|
}
|