diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5215a0f6..36ca5a15 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Bulma Changelog
+## 0.6.1
+
+### New features
+
+* #1287 New `.is-invisible` helper
+
## 0.6.0
### Breaking changes
diff --git a/docs/documentation/modifiers/helpers.html b/docs/documentation/modifiers/helpers.html
index a725e711..6dec830a 100644
--- a/docs/documentation/modifiers/helpers.html
+++ b/docs/documentation/modifiers/helpers.html
@@ -37,7 +37,7 @@ doc-subtab: helpers
Removes any padding |
- | Other |
+ Other |
is-overlay |
Completely covers the first positioned parent |
@@ -56,6 +56,10 @@ doc-subtab: helpers
is-unselectable |
Prevents the text from being selectable |
+
+ is-invisible |
+ Adds visibility hidden |
+
diff --git a/sass/base/helpers.sass b/sass/base/helpers.sass
index dcfe1e9c..ea586842 100644
--- a/sass/base/helpers.sass
+++ b/sass/base/helpers.sass
@@ -185,6 +185,45 @@ $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
.is-hidden-fullhd
display: none !important
+.is-invisible
+ visibility: hidden !important
+
++mobile
+ .is-invisible-mobile
+ visibility: hidden !important
+
++tablet
+ .is-invisible-tablet
+ visibility: hidden !important
+
++tablet-only
+ .is-invisible-tablet-only
+ visibility: hidden !important
+
++touch
+ .is-invisible-touch
+ visibility: hidden !important
+
++desktop
+ .is-invisible-desktop
+ visibility: hidden !important
+
++desktop-only
+ .is-invisible-desktop-only
+ visibility: hidden !important
+
++widescreen
+ .is-invisible-widescreen
+ visibility: hidden !important
+
++widescreen-only
+ .is-invisible-widescreen-only
+ visibility: hidden !important
+
++fullhd
+ .is-invisible-fullhd
+ visibility: hidden !important
+
// Other
.is-marginless