Compare commits
6 Commits
cb65915c7c
...
d38338b360
| Author | SHA1 | Date | |
|---|---|---|---|
| d38338b360 | |||
| 10aabb24a9 | |||
| a8869adad6 | |||
| ff9b9a3570 | |||
| 47f985815a | |||
| 8c79477559 |
@ -1,3 +1,21 @@
|
|||||||
$grid-columns: 12;
|
// Made this more like the breakpoints used in Bootstrap 5
|
||||||
$grid-gutter-width: rem-calc(20px);
|
$grid-breakpoints: (
|
||||||
$grid-row-columns: 6;
|
xs: 0,
|
||||||
|
sm: 576px,
|
||||||
|
md: 768px,
|
||||||
|
lg: 992px,
|
||||||
|
xl: 1200px,
|
||||||
|
xxl: 1400px,
|
||||||
|
);
|
||||||
|
|
||||||
|
$container-max-widths: (
|
||||||
|
sm: 540px,
|
||||||
|
md: 720px,
|
||||||
|
lg: 960px,
|
||||||
|
xl: 1140px,
|
||||||
|
xxl: 1320px,
|
||||||
|
);
|
||||||
|
|
||||||
|
$grid-columns: 12;
|
||||||
|
$grid-gutter-width: rem-calc(20px);
|
||||||
|
$grid-row-columns: 6;
|
||||||
|
|||||||
@ -10,8 +10,10 @@ Look up all available Bootstrap variables here: https://rstudio.github.io/bslib/
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
//Abstracts: Things used throughout the site such as utility classes and generic overrides.
|
//Abstracts: Things used throughout the site such as utility classes and generic overrides.
|
||||||
@import "abstracts/utilities";
|
|
||||||
//@import "abstracts/base";
|
//@import "abstracts/base";
|
||||||
|
@import "abstracts/functions";
|
||||||
|
@import "abstracts/mixins";
|
||||||
|
//@import "abstracts/utilities";
|
||||||
|
|
||||||
// Components: parts of the theme itself that are not associated with a module.
|
// Components: parts of the theme itself that are not associated with a module.
|
||||||
//@import "components/buttons";
|
//@import "components/buttons";
|
||||||
|
|||||||
17
falcon/_dev/css/theme/custom/abstracts/_functions.scss
Normal file
17
falcon/_dev/css/theme/custom/abstracts/_functions.scss
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
@use "sass:math";
|
||||||
|
|
||||||
|
// Font size utility classes generator
|
||||||
|
// Generates utility classes like .fs-14, .fs-16, etc.
|
||||||
|
@for $i from 8 through 72 {
|
||||||
|
.fs-#{$i} {
|
||||||
|
font-size: rem-calc($i * 1px) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// gap size utility classes generator
|
||||||
|
// Generates utility classes like .gap-4
|
||||||
|
@for $i from 1 through 35 {
|
||||||
|
.gap-#{$i} {
|
||||||
|
gap: rem-calc($i * 1px) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user