-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing installed script preview templates
- Loading branch information
1 parent
697751c
commit 8528f27
Showing
1 changed file
with
89 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,93 @@ | ||
// Load custom component map to overwrite | ||
// Order in which files are loaded doesn't matter (because of !default) | ||
@import '../sass/project/alerts'; | ||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&display=swap'); | ||
|
||
|
||
|
||
// Initialize Bootstrap | ||
// ------------------------------------------------------------------ | ||
|
||
@import 'node_modules/bootstrap/scss/functions'; | ||
|
||
|
||
// Project Variables | ||
// ------------------------------------------------------------------ | ||
|
||
$prefix: ''; | ||
$enable-shadows: true; | ||
|
||
@import '../sass/project/buttons'; | ||
@import '../sass/project/checkbox'; | ||
@import '../sass/project/radio'; | ||
@import '../sass/project/switch'; | ||
@import '../sass/project/input'; | ||
@import '../sass/project/select'; | ||
@import '../sass/project/alerts'; | ||
@import '../sass/project/modal'; | ||
@import '../sass/project/pagination'; | ||
@import '../sass/project/tooltips'; | ||
|
||
// Load Bootstrap variables | ||
// All bootstrap variables are marked with !default and will be ignored if declared previously | ||
@import 'bootstrap/scss/bootstrap'; | ||
@import '../sass/project/buttons'; | ||
|
||
// Bootstrap Variables | ||
// ------------------------------------------------------------------ | ||
|
||
@import 'node_modules/bootstrap/scss/variables'; | ||
@import 'node_modules/bootstrap/scss/maps'; | ||
|
||
|
||
// Bootstrap Base | ||
// ------------------------------------------------------------------ | ||
|
||
@import 'node_modules/bootstrap/scss/mixins'; | ||
@import 'node_modules/bootstrap/scss/root'; | ||
@import 'node_modules/bootstrap/scss/utilities'; | ||
@import 'node_modules/bootstrap/scss/reboot'; | ||
|
||
|
||
// Bootstrap Components | ||
// ------------------------------------------------------------------ | ||
|
||
@import 'node_modules/bootstrap/scss/type'; | ||
@import 'node_modules/bootstrap/scss/images'; | ||
@import 'node_modules/bootstrap/scss/containers'; | ||
@import 'node_modules/bootstrap/scss/grid'; | ||
@import 'node_modules/bootstrap/scss/tables'; | ||
@import 'node_modules/bootstrap/scss/forms'; | ||
@import 'node_modules/bootstrap/scss/buttons'; | ||
@import 'node_modules/bootstrap/scss/transitions'; | ||
@import 'node_modules/bootstrap/scss/dropdown'; | ||
@import 'node_modules/bootstrap/scss/button-group'; | ||
@import 'node_modules/bootstrap/scss/nav'; | ||
@import 'node_modules/bootstrap/scss/navbar'; | ||
@import 'node_modules/bootstrap/scss/card'; | ||
@import 'node_modules/bootstrap/scss/accordion'; | ||
@import 'node_modules/bootstrap/scss/breadcrumb'; | ||
@import 'node_modules/bootstrap/scss/pagination'; | ||
@import 'node_modules/bootstrap/scss/badge'; | ||
@import 'node_modules/bootstrap/scss/alert'; | ||
@import 'node_modules/bootstrap/scss/progress'; | ||
@import 'node_modules/bootstrap/scss/list-group'; | ||
@import 'node_modules/bootstrap/scss/close'; | ||
@import 'node_modules/bootstrap/scss/toasts'; | ||
@import 'node_modules/bootstrap/scss/modal'; | ||
@import 'node_modules/bootstrap/scss/tooltip'; | ||
@import 'node_modules/bootstrap/scss/popover'; | ||
@import 'node_modules/bootstrap/scss/carousel'; | ||
@import 'node_modules/bootstrap/scss/spinners'; | ||
@import 'node_modules/bootstrap/scss/offcanvas'; | ||
@import 'node_modules/bootstrap/scss/placeholders'; | ||
@import 'node_modules/bootstrap/scss/helpers'; | ||
@import 'node_modules/bootstrap/scss/utilities/api'; | ||
|
||
|
||
// Project Components | ||
// ------------------------------------------------------------------ | ||
|
||
@import '../sass/project/components/buttons'; | ||
@import '../sass/project/components/checkbox'; | ||
@import '../sass/project/components/radio'; | ||
@import '../sass/project/components/switch'; | ||
@import '../sass/project/components/input'; | ||
@import '../sass/project/components/select'; | ||
@import '../sass/project/components/alerts'; | ||
@import '../sass/project/components/modal'; | ||
@import '../sass/project/components/pagination'; | ||
@import '../sass/project/components/tooltips'; |