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

github.com/d-kusk/minimage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorDaisuke Konishi <skydai1151@gmail.com>2017-11-04 17:41:53 +0300
committerDaisuke Konishi <skydai1151@gmail.com>2017-11-04 17:41:53 +0300
commit82638865ab3332650acf69ec9305f2034eab6dc8 (patch)
tree42d627faca0197cfc4f6994b321caa413d87745d /source
parentaacc501102131062a1d6a47d74faa5b4453fef74 (diff)
add base
Diffstat (limited to 'source')
-rw-r--r--source/sass/_variables.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/sass/_variables.scss b/source/sass/_variables.scss
index 4f33dbe..0700d3f 100644
--- a/source/sass/_variables.scss
+++ b/source/sass/_variables.scss
@@ -1,8 +1,8 @@
// Size
$document-width--small: 300px;
$document-width--medium: 768px;
-$document-width--large: 1000px;
-$document-width--xlarge: 1200px;
+$document-width--large: $document-width--medium;
+$document-width--xlarge: $document-width--medium;
// Color
$color-primary: #000000;
@@ -14,7 +14,7 @@ $breakpoints: (
'small': 'screen and (max-width: #{$document-width--small})',
'medium': 'screen and (max-width: #{$document-width--medium})',
'large': 'screen and (max-width: #{$document-width--large})',
- 'xlarge': 'screen and (max-width: #{$document-width--xlarge})',
+ // 'xlarge': 'screen and (max-width: #{$document-width--xlarge})',
) !default;