From 85a9d81638d240f3fa9ed01cb139ef33243b379b Mon Sep 17 00:00:00 2001 From: sanjeevi01 Date: Fri, 5 Jul 2019 15:30:52 +0530 Subject: Initial commit --- bootstrap/less/mixins/resize.less | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 bootstrap/less/mixins/resize.less (limited to 'bootstrap/less/mixins/resize.less') diff --git a/bootstrap/less/mixins/resize.less b/bootstrap/less/mixins/resize.less new file mode 100755 index 0000000..c851328 --- /dev/null +++ b/bootstrap/less/mixins/resize.less @@ -0,0 +1,6 @@ +// Resize anything + +.resizable(@direction) { + overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` + resize: @direction; // Options: horizontal, vertical, both +} -- cgit