Revert "Upload old System"

This reverts commit 13af30f74b
This commit is contained in:
WinterMyst
2024-09-21 23:08:17 +00:00
parent 13af30f74b
commit 9337233b21
36 changed files with 0 additions and 1882 deletions

View File

@ -1,25 +0,0 @@
@mixin element-invisible {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
clip: rect(0 0 0 0);
overflow: hidden;
}
@mixin hide {
display: none;
}
// Update the mixin to accept 3 arguments: direction, wrap, and justify
@mixin flexbox($direction, $wrap: nowrap, $justify: flex-start, $align: stretch) {
display: flex;
flex-direction: $direction;
flex-wrap: $wrap;
justify-content: $justify;
align-items: $align;
}