4
0
forked from crowetic/commerce

Merge pull request #36 from ftonato/fix/mobile-style-modules

Fix some minor problems with style between mobile and desktop
This commit is contained in:
B 2020-10-28 15:22:25 -03:00 committed by GitHub
commit 18f95d25db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -1,7 +1,10 @@
.input { .input {
@apply bg-transparent px-3 py-2 appearance-none w-full transition duration-150 ease-in-out pr-10; @apply bg-transparent px-3 py-2 appearance-none w-full transition duration-150 ease-in-out pr-10;
@screen sm {
min-width: 300px; min-width: 300px;
} }
}
.input:focus { .input:focus {
@apply outline-none shadow-outline-2; @apply outline-none shadow-outline-2;

View File

@ -78,8 +78,13 @@
} }
.button { .button {
min-width: 300px;
text-align: center; text-align: center;
width: 100%;
max-width: 300px;
@screen sm {
min-width: 300px;
}
} }
.wishlistButton { .wishlistButton {