mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-13 09:20:38 -07:00
Switch from sprockets to cssbundling for bundling css assets.
This commit is contained in:
parent
4306f5c5d4
commit
12c1a3b7fc
14 changed files with 222 additions and 45 deletions
|
|
@ -1,4 +1,4 @@
|
|||
@import "bootstrap";
|
||||
@import 'bootstrap/scss/bootstrap';
|
||||
@import "scaffolds";
|
||||
@import "school_categories";
|
||||
@import "questions";
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
@import 'bootstrap';
|
||||
@import 'bootstrap/scss/bootstrap';
|
||||
@import 'bootstrap-overrides';
|
||||
@import 'colors';
|
||||
@import 'fonts';
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
@import "bootstrap-overrides";
|
||||
@import "bootstrap";
|
||||
@import 'bootstrap/scss/bootstrap';
|
||||
@import "clear-margin-padding";
|
||||
@import "colors";
|
||||
@import "fonts";
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
@import "bootstrap-overrides";
|
||||
@import "bootstrap";
|
||||
@import 'bootstrap/scss/bootstrap';
|
||||
@import "clear-margin-padding";
|
||||
@import "colors";
|
||||
@import "fonts";
|
||||
@import "borders";
|
||||
|
||||
.hero-image {
|
||||
background-image: url(image-path("hero.png"));
|
||||
background-image: url("hero.png");
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
// Entry point for the build script in your package.json
|
||||
|
||||
import Rails from "@rails/ujs"
|
||||
import Turbolinks from "turbolinks"
|
||||
import * as ActiveStorage from "@rails/activestorage"
|
||||
|
|
@ -15,3 +14,4 @@ document.addEventListener("turbolinks:load", () => {
|
|||
initializeListenersForNavDropdowns()
|
||||
initializeListenersForHomeDropdowns()
|
||||
})
|
||||
import * as bootstrap from "bootstrap"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue