feat(css): breakpoints at 850px and 475px

mobile responsiveness
main
steven 2020-12-22 09:56:24 -05:00
parent 1a6e6001e6
commit 734d883d3c
1 changed files with 12 additions and 0 deletions

View File

@ -61,6 +61,18 @@
margin: auto;
text-align: left;
}
/* breakpoints at 850px and 475px */
@media screen and (max-width: 850px) {
.luggage {
width: 50%;
}
}
@media screen and (max-width: 475px) {
.luggage {
width: 100%;
}
}
</style>
<?php