You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
358 B
CSS

.buttonSet {
display: inline-flex;
composes: combinedButton from "../shared.css";
}
.direction-horizontal {
flex-direction: row;
/* composes: combinedHorizontal from "../shared.css"; */
/* grid-auto-columns: 1fr; */
}
.direction-vertical {
flex-direction: column;
/* composes: combinedVertical from "../shared.css"; */
/* grid-auto-rows: 1fr; */
}