mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2024-11-23 10:21:46 +01:00
refactor(scss): create breakpoints.scss
This commit is contained in:
parent
45b702d3ea
commit
190475dbad
3 changed files with 6 additions and 5 deletions
4
assets/scss/breakpoints.scss
Normal file
4
assets/scss/breakpoints.scss
Normal file
|
@ -0,0 +1,4 @@
|
|||
$on-phone: 812px;
|
||||
$on-tablet: 1024px;
|
||||
$on-desktop: 1519px;
|
||||
$on-desktop-large: 1920px;
|
|
@ -1,3 +1,5 @@
|
|||
@import "breakpoints.scss";
|
||||
|
||||
@import "variables.scss";
|
||||
@import "helper/shadow.scss";
|
||||
|
||||
|
|
|
@ -1,11 +1,6 @@
|
|||
$defaultTagBackgrounds: #8ea885, #df7988, #0177b8, #ffb900, #6b69d6;
|
||||
$defaultTagColors: #fff, #fff, #fff, #fff, #fff;
|
||||
|
||||
$on-phone: 812px;
|
||||
$on-tablet: 1024px;
|
||||
$on-desktop: 1519px;
|
||||
$on-desktop-large: 1920px;
|
||||
|
||||
/*
|
||||
* CSS Variables
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue