Updated to new theme of TeXt

This commit is contained in:
2021-10-25 11:59:10 -04:00
parent 47c2c2e8a1
commit 296d628d8b
318 changed files with 21116 additions and 6966 deletions
+26
View File
@@ -0,0 +1,26 @@
@mixin overflow($overflow: auto, $direction: default) {
@if $direction == default {
overflow: $overflow;
} @else if $direction == "x" {
@if $overflow == auto {
overflow: hidden;
}
overflow-x: $overflow;
} @else if $direction == "y" {
@if $overflow == auto {
overflow: hidden;
}
overflow-y: $overflow;
}
@if $overflow == auto {
-webkit-overflow-scrolling: touch;
}
}
.of-auto {
@include overflow(auto);
}
.of-hidden {
@include overflow(hidden);
}