From c504e1e907ea68e3b777db5d286974010d2361c0 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Mon, 18 Dec 2023 09:54:36 +0000 Subject: Added a new _custom.scss file Turns out if you configure it thus, you can customise the sass variables in bootstrap. https://bootstrap.themes.guide/how-to-customize-bootstrap.html --- app/assets/stylesheets/_custom.scss | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app/assets/stylesheets/_custom.scss (limited to 'app/assets/stylesheets/_custom.scss') diff --git a/app/assets/stylesheets/_custom.scss b/app/assets/stylesheets/_custom.scss new file mode 100644 index 0000000..4a18dd1 --- /dev/null +++ b/app/assets/stylesheets/_custom.scss @@ -0,0 +1,20 @@ +@import 'bootstrap/scss/bootstrap'; + +$nav-link-color: green; +$nav-link-hover-color: darkgreen; + + +@import 'bootstrap/scss/bootstrap'; + +table { + width: 100%; + border-collapse: collapse; + background: lightgreen; + margin-top: 30px; + table-layout: fixed; + border: 2px solid; +} +td { + border: 1px solid; + padding: 3px; +} -- cgit v1.2.3