Added class prefix to buttons, Improved intro, Changed sidebar slightly

Update index.php, buttons.php, and 4 more files...
This commit is contained in:
2024-11-16 17:36:38 +01:00
parent 8fa4b6cd2e
commit 967b17100a
6 changed files with 18 additions and 40 deletions

View File

@@ -4,13 +4,13 @@
@mixin overflow-maker($overflow-type) {
.o-#{$overflow-type} {
overflow: #{$overflow-type};
overflow: #{$overflow-type} !important;
}
.ox-#{$overflow-type} {
overflow-x: #{$overflow-type};
overflow-x: #{$overflow-type} !important;
}
.oy-#{$overflow-type} {
overflow-y: #{$overflow-type};
overflow-y: #{$overflow-type} !important;
}
}