silverstripe-webpack/app/client/src/scss/_variables.scss

47 lines
614 B
SCSS
Raw Normal View History

2018-02-05 12:11:01 +01:00
/*
* Your custom variables
*/
$grid-breakpoints: (
xs: 0,
sm: 576px,
md: 768px,
lg: 992px,
xl: 1200px,
xxl: 1390px,
xxxl: 1590px,
);
$container-max-widths: (
sm: 540px,
md: 720px,
lg: 960px,
xl: 1140px,
xxl: 1330px,
xxxl: 1560px,
);
2019-07-18 08:09:58 +02:00
$font-family-base: 'Lato', sans-serif;
2019-10-20 05:12:14 +02:00
$grid-gutter-width: 2rem;
$grid-gutter-height: 2rem;
$grid-gutter-element-height: $grid-gutter-height * 2;
@import '~@a2nt/ss-bootstrap-ui-webpack-boilerplate/src/scss/_variables';
2019-11-07 19:26:33 +01:00
// Add your site-wide + content editor typography styling
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
color: $headings-color;
2019-11-07 19:26:33 +01:00
}