Fix buttons layout in product details page

This commit is contained in:
redphx
2024-09-26 19:46:30 +07:00
parent 2f7a57e084
commit e7c10d43f5
4 changed files with 29 additions and 26 deletions

21
src/assets/css/misc.styl Normal file
View File

@@ -0,0 +1,21 @@
.bx-product-details-buttons {
display: flex;
gap: 10px;
flex-direction: row;
button {
max-width: max-content;
margin: 10px 0 0 0;
display: flex;
}
}
@media (min-width: 568px) and (max-height: 480px) {
.bx-product-details-buttons {
flex-direction: column;
button {
margin: 8px 0 0 10px;
}
}
}