Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo-mod-bootstrap-scss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-01-12 14:56:19 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-01-12 15:04:14 +0300
commit3a29ec3cfb21ddd076150bc500d38ef8c56c827c (patch)
tree4b321723457bc5c31428994447b7c467ca01a114 /README.md
parent4006a62e046be39184cc64e23710c8044f614e7c (diff)
Upgrade to github.com/twbs/bootstrap v5.0.2
Diffstat (limited to 'README.md')
-rw-r--r--README.md23
1 files changed, 14 insertions, 9 deletions
diff --git a/README.md b/README.md
index b0060b4..b7dcc46 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ Add the component to your Hugo site's config:
```toml
[module]
[[module.imports]]
-path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v4"
+path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5"
```
The Bootstrap SCSS will be mounted in `assets/scss/bootstrap`, so you can then import either all:
@@ -25,14 +25,18 @@ Or only what you need:
```scss
+// Configuration
@import "bootstrap/functions";
@import "bootstrap/variables";
@import "bootstrap/mixins";
+@import "bootstrap/utilities";
+
+// Layout & components
@import "bootstrap/root";
@import "bootstrap/reboot";
@import "bootstrap/type";
@import "bootstrap/images";
-@import "bootstrap/code";
+@import "bootstrap/containers";
@import "bootstrap/grid";
@import "bootstrap/tables";
@import "bootstrap/forms";
@@ -40,18 +44,15 @@ Or only what you need:
@import "bootstrap/transitions";
@import "bootstrap/dropdown";
@import "bootstrap/button-group";
-@import "bootstrap/input-group";
-@import "bootstrap/custom-forms";
@import "bootstrap/nav";
@import "bootstrap/navbar";
@import "bootstrap/card";
+@import "bootstrap/accordion";
@import "bootstrap/breadcrumb";
@import "bootstrap/pagination";
@import "bootstrap/badge";
-@import "bootstrap/jumbotron";
@import "bootstrap/alert";
@import "bootstrap/progress";
-@import "bootstrap/media";
@import "bootstrap/list-group";
@import "bootstrap/close";
@import "bootstrap/toasts";
@@ -60,10 +61,14 @@ Or only what you need:
@import "bootstrap/popover";
@import "bootstrap/carousel";
@import "bootstrap/spinners";
-@import "bootstrap/utilities";
-@import "bootstrap/print";
-```
+@import "bootstrap/offcanvas";
+
+// Helpers
+@import "bootstrap/helpers";
+// Utilities
+@import "bootstrap/utilities/api";
+```
## Versions