Migracja projektu z ReactJS

This commit is contained in:
2020-07-04 14:26:53 +02:00
parent 6bbe0b9747
commit 539688c699
35 changed files with 2215 additions and 9 deletions
+11
View File
@@ -0,0 +1,11 @@
@mixin midScreen() {
@media only screen and (min-width: 850px) {
@content;
}
}
@mixin bigScreen() {
@media only screen and (min-width: 1600px) {
@content;
}
}