fix btn group

This commit is contained in:
Philipp Kühn
2021-02-05 10:00:14 +01:00
parent 6f608b0602
commit 6c6343c390
4 changed files with 42 additions and 7 deletions

View File

@@ -0,0 +1,25 @@
.btn-wrapper {
display: flex;
flex-direction: column;
@media (min-width: 600px) {
flex-direction: row;
}
> .btn {
margin-bottom: 0.75rem;
&:last-child {
margin-bottom: 0;
}
@media (min-width: 600px) {
margin-bottom: 0;
margin-right: 0.75rem;
&:last-child {
margin-right: 0;
}
}
}
}