diff options
author | Matthew Lemon <y@yulqen.org> | 2023-12-17 21:02:25 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-12-17 21:02:25 +0000 |
commit | 5ddfd3d2e6c13873cfaacdfd53c3e853d605f951 (patch) | |
tree | 665c2d0cb91833f3e33b1a42734aebcdb459d5c7 /app/assets | |
parent | a6929cddd59e6f2a1df5b722194d84e8fb68b9d4 (diff) |
Tinkering
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/_header.scss | 4 | ||||
-rw-r--r-- | app/assets/stylesheets/_styles.scss | 17 | ||||
-rw-r--r-- | app/assets/stylesheets/application.bootstrap.scss | 2 |
3 files changed, 18 insertions, 5 deletions
diff --git a/app/assets/stylesheets/_header.scss b/app/assets/stylesheets/_header.scss deleted file mode 100644 index 723e9d1..0000000 --- a/app/assets/stylesheets/_header.scss +++ /dev/null @@ -1,4 +0,0 @@ -#header-title { - background-color: yellow; - color: red; -} diff --git a/app/assets/stylesheets/_styles.scss b/app/assets/stylesheets/_styles.scss new file mode 100644 index 0000000..95ca513 --- /dev/null +++ b/app/assets/stylesheets/_styles.scss @@ -0,0 +1,17 @@ +#header-title { + background-color: yellow; + color: red; +} + +table { + width: 100%; + border-collapse: collapse; + background: lightgreen; + margin-top: 30px; + table-layout: fixed; + border: 2px solid; +} +th, td { + border: 1px solid; + padding: 3px; +} diff --git a/app/assets/stylesheets/application.bootstrap.scss b/app/assets/stylesheets/application.bootstrap.scss index 834724c..add77b4 100644 --- a/app/assets/stylesheets/application.bootstrap.scss +++ b/app/assets/stylesheets/application.bootstrap.scss @@ -1,3 +1,3 @@ @import 'bootstrap/scss/bootstrap'; @import 'bootstrap-icons/font/bootstrap-icons'; -@import '_header.scss'; +@import '_styles.scss'; |