diff options
author | Matthew Lemon <y@yulqen.org> | 2023-12-17 14:26:17 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-12-17 14:26:17 +0000 |
commit | c84b94a647fb4c068e8be9d0495ff7284f41f168 (patch) | |
tree | d969c75c764436c0478234233597e38e1e29c2d5 /app/assets |
Initial
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/builds/.keep | 0 | ||||
-rw-r--r-- | app/assets/config/manifest.js | 2 | ||||
-rw-r--r-- | app/assets/images/.keep | 0 | ||||
-rw-r--r-- | app/assets/stylesheets/_header.scss | 4 | ||||
-rw-r--r-- | app/assets/stylesheets/application.bootstrap.scss | 3 |
5 files changed, 9 insertions, 0 deletions
diff --git a/app/assets/builds/.keep b/app/assets/builds/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/app/assets/builds/.keep diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js new file mode 100644 index 0000000..9a99757 --- /dev/null +++ b/app/assets/config/manifest.js @@ -0,0 +1,2 @@ +//= link_tree ../images +//= link_tree ../builds diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/app/assets/images/.keep diff --git a/app/assets/stylesheets/_header.scss b/app/assets/stylesheets/_header.scss new file mode 100644 index 0000000..723e9d1 --- /dev/null +++ b/app/assets/stylesheets/_header.scss @@ -0,0 +1,4 @@ +#header-title { + background-color: yellow; + color: red; +} diff --git a/app/assets/stylesheets/application.bootstrap.scss b/app/assets/stylesheets/application.bootstrap.scss new file mode 100644 index 0000000..834724c --- /dev/null +++ b/app/assets/stylesheets/application.bootstrap.scss @@ -0,0 +1,3 @@ +@import 'bootstrap/scss/bootstrap'; +@import 'bootstrap-icons/font/bootstrap-icons'; +@import '_header.scss'; |