code added

This commit is contained in:
2023-01-31 16:37:18 +05:30
parent 6c21a9aeab
commit 594ad5a4a7
59 changed files with 4266 additions and 552 deletions
+6 -4
View File
@@ -27,15 +27,17 @@ ORDER: Base + typography > general layout + grid > page layout > components
*/
@mixin respond($breakpoint) {
@if $breakpoint == phone {
@media only screen and (max-width: 37.5em) { @content }; //600px
@media only screen and (max-width: 600px) { @content }; //600px
}
@if $breakpoint == tab-port {
@media only screen and (max-width: 56.25em) { @content }; //900px
@media only screen and (max-width: 900px) { @content }; //900px
}
@if $breakpoint == tab-land {
@media only screen and (max-width: 75em) { @content }; //1200px
@media only screen and (max-width: 1200px) { @content }; //1200px
}
@if $breakpoint == big-desktop {
@media only screen and (min-width: 112.5em) { @content }; //1800
@media only screen and (min-width: 1800) { @content }; //1800
}
}