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;
}
}
+10
View File
@@ -0,0 +1,10 @@
$primaryCol: #333;
$secondaryCol: #fdad17;
$bgCol: #525252;
$errorCol: #ff1919;
$warningCol: #ff975b;
$accentCol: #ffbb00;
$accent2Col: #ff3d5d;