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

github.com/EmielH/hallo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorEmiel Hollander <EmielH@users.noreply.github.com>2019-04-06 14:48:50 +0300
committerEmiel Hollander <EmielH@users.noreply.github.com>2019-04-06 14:59:26 +0300
commitd7de8b035fd17fcb4a905c4ba7655699c78ceddd (patch)
tree05ca5c184e94b7729ee0d6b7418b68b975238aa2 /assets
parenta69ac1ab7727202a8d009de99252771321889a91 (diff)
Include standard Bootstrap responsive breakpoints
Thanks to @cremich See pull request #8
Diffstat (limited to 'assets')
-rw-r--r--assets/scss/hallo/_variables.scss6
1 files changed, 5 insertions, 1 deletions
diff --git a/assets/scss/hallo/_variables.scss b/assets/scss/hallo/_variables.scss
index c5071c2..2b9ac09 100644
--- a/assets/scss/hallo/_variables.scss
+++ b/assets/scss/hallo/_variables.scss
@@ -2,7 +2,11 @@
$sans-serif: Montserrat, 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif;
// Responsive breaks
-$break-large: 980px;
+$break-extra-small: 575px;
+$break-small: 576px;
+$break-medium: 768px;
+$break-large: 992px;
+$break-extra-large: 1200px;
@mixin transition($args...) {
-webkit-transition: $args;