Set cart buttons to fixed width and expand when screen is too small

This commit is contained in:
Matt-Yorkley
2020-04-08 11:07:06 +02:00
parent 1ddbabd841
commit 538e4e54d2

View File

@@ -115,3 +115,14 @@
height: 36px;
}
}
.links {
.button {
padding: 1.125rem 0 1.1875rem;
width: 210px;
@media all and (max-width: 480px) {
width: 100%;
}
}
}