diff --git a/docs/_layouts/documentation.html b/docs/_layouts/documentation.html
index 6e1694d4..d5b42222 100644
--- a/docs/_layouts/documentation.html
+++ b/docs/_layouts/documentation.html
@@ -62,3 +62,17 @@ route: documentation
{{ content }}
+
+
+
diff --git a/docs/css/bulma-docs.css b/docs/css/bulma-docs.css
index 81f0a054..cb488f50 100644
--- a/docs/css/bulma-docs.css
+++ b/docs/css/bulma-docs.css
@@ -961,6 +961,10 @@ a.has-text-danger:hover, a.has-text-danger:focus {
padding: 0 !important;
}
+.is-radiusless {
+ border-radius: 0 !important;
+}
+
.is-unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
@@ -7649,7 +7653,6 @@ label.panel-block:hover {
}
.section {
- background-color: white;
padding: 3rem 1.5rem;
}
diff --git a/docs/documentation/modifiers/helpers.html b/docs/documentation/modifiers/helpers.html
index e323e441..89838cd7 100644
--- a/docs/documentation/modifiers/helpers.html
+++ b/docs/documentation/modifiers/helpers.html
@@ -36,19 +36,6 @@ doc-subtab: helpers
is-fullwidth |
Takes up the whole width (100%) |
-
- | Text |
- has-text-centered |
- Centers the text |
-
-
- has-text-left |
- Text is left-aligned |
-
-
- has-text-right |
- Text is right-aligned |
-
| Other |
is-marginless |
@@ -59,12 +46,12 @@ doc-subtab: helpers
Removes any padding |
- is-unselectable |
- Prevents the text from being selectable |
+ is-radiusless |
+ Removes any radius |
- is-hidden |
- Hides element |
+ is-unselectable |
+ Prevents the text from being selectable |
diff --git a/sass/base/helpers.sass b/sass/base/helpers.sass
index f30aa064..bd2645a4 100644
--- a/sass/base/helpers.sass
+++ b/sass/base/helpers.sass
@@ -148,5 +148,8 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
.is-paddingless
padding: 0 !important
+.is-radiusless
+ border-radius: 0 !important
+
.is-unselectable
+unselectable
diff --git a/sass/layout/section.sass b/sass/layout/section.sass
index 7139cfb5..c6cde56d 100644
--- a/sass/layout/section.sass
+++ b/sass/layout/section.sass
@@ -1,5 +1,4 @@
.section
- background-color: $white
padding: 3rem 1.5rem
// Responsiveness
+desktop