Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cowboysmall-tools/hugo-devresume-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/assets/scss/bootstrap/scss/mixins/_resize.scss')
-rwxr-xr-xstatic/assets/scss/bootstrap/scss/mixins/_resize.scss6
1 files changed, 6 insertions, 0 deletions
diff --git a/static/assets/scss/bootstrap/scss/mixins/_resize.scss b/static/assets/scss/bootstrap/scss/mixins/_resize.scss
new file mode 100755
index 0000000..66f233a
--- /dev/null
+++ b/static/assets/scss/bootstrap/scss/mixins/_resize.scss
@@ -0,0 +1,6 @@
+// Resize anything
+
+@mixin resizable($direction) {
+ overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
+ resize: $direction; // Options: horizontal, vertical, both
+}