Added basic Formula Wizard, Added script to compile SASS and TS, many other random changes.

Update .gitignore, .htaccess, and 68 more files...
This commit is contained in:
2023-08-02 17:06:58 +02:00
parent 6fb621e550
commit 4cf950b5dd
70 changed files with 4128 additions and 182 deletions

View File

@@ -12,18 +12,25 @@
}
.border {
border: 1px solid #{$color-border-all};
border: 1px solid;
&.b-light {
border: 1px solid #{$color-border-light};
}
//&.b-light {
// border: 1px solid #{$color-border-light};
//}
}
* {
.dark-mode & {
border-color: #{$color-border-all};
}
}
//main {
// .border {
// border: 1px solid #{$color-border-main};
// }
//}
//* {
// .dark-mode & {
// border-color: #{$color-border-all};
// }
//}
@include border-maker("t", "top");
@include border-maker("b", "bottom");