aboutsummaryrefslogtreecommitdiffstats
path: root/scss/uikit/components/height.scss
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-08-22 19:59:51 +0200
committerGravatar Johannes Christ <[email protected]>2018-08-22 19:59:51 +0200
commit8ef1cd50a0bf34adc3033706a2eeadd4339daa67 (patch)
tree8885bc6035dbf664cff573fba56822cec6f3128d /scss/uikit/components/height.scss
parentUse `postgres` service on CI. (diff)
Remove unused files.
Diffstat (limited to 'scss/uikit/components/height.scss')
-rw-r--r--scss/uikit/components/height.scss54
1 files changed, 0 insertions, 54 deletions
diff --git a/scss/uikit/components/height.scss b/scss/uikit/components/height.scss
deleted file mode 100644
index 3bcc1504..00000000
--- a/scss/uikit/components/height.scss
+++ /dev/null
@@ -1,54 +0,0 @@
-// Name: Height
-// Description: Utilities for heights
-//
-// Component: `uk-height-*`
-//
-// ========================================================================
-
-
-// Variables
-// ========================================================================
-
-$height-small-height: 150px !default;
-$height-medium-height: 300px !default;
-$height-large-height: 450px !default;
-
-
-/* ========================================================================
- Component: Height
- ========================================================================== */
-
-[class*='uk-height'] { box-sizing: border-box; }
-
-/*
- * Only works if parent element has a height set
- */
-
-.uk-height-1-1 { height: 100%; }
-
-/*
- * Useful to create image teasers
- */
-
-.uk-height-viewport { min-height: 100vh; }
-
-/*
- * Pixel
- * Useful for `overflow: auto`
- */
-
-.uk-height-small { height: $height-small-height; }
-.uk-height-medium { height: $height-medium-height; }
-.uk-height-large { height: $height-large-height; }
-
-.uk-height-max-small { max-height: $height-small-height; }
-.uk-height-max-medium { max-height: $height-medium-height; }
-.uk-height-max-large { max-height: $height-large-height; }
-
-
-// Hooks
-// ========================================================================
-
-@if(mixin-exists(hook-height-misc)) {@include hook-height-misc();}
-
-// @mixin hook-height-misc(){}