0
owncast/web/components/action-buttons/ActionButtonRow/ActionButtonRow.module.scss

19 lines
321 B
SCSS
Raw Normal View History

2022-05-07 16:13:06 -07:00
.row {
padding: 0.75rem;
2023-06-20 20:56:37 -07:00
padding-bottom: 0;
2022-05-07 16:13:06 -07:00
display: flex;
2022-10-13 20:13:00 +02:00
flex-wrap: wrap;
2022-05-07 16:13:06 -07:00
align-items: center;
justify-content: flex-end;
2023-06-20 20:56:37 -07:00
2022-05-07 16:13:06 -07:00
button {
margin-left: clamp(1px, 0.2vw, 0.3rem);
margin-right: clamp(1px, 0.2vw, 0.3rem);
margin-bottom: 0.5rem;
2023-06-20 20:56:37 -07:00
&:last-of-type {
margin-right: 0;
}
2022-05-07 16:13:06 -07:00
}
}