CoastalCommitsPastes/client/app/components/button-group/button-group.module.css

20 lines
360 B
CSS
Raw Normal View History

.button-group {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: stretch;
align-content: stretch;
}
.button-group > * {
flex: 1 1 auto;
margin: 0;
2022-11-16 03:49:12 -05:00
}
/* all buttons on the inside should have no border radius */
.button-group :global(button) {
border-radius: 0 !important;
}