This commit is contained in:
Jeremy Thomas
2018-10-31 18:19:43 +00:00
parent 892c7e7d3b
commit c50cc06e5a
4 changed files with 11 additions and 6 deletions

View File

@@ -19,6 +19,7 @@
* #2157 Fix #1656 -> Allow border radius if only one `.control` in `.field` * #2157 Fix #1656 -> Allow border radius if only one `.control` in `.field`
* #2091 Fix #2091 -> Remove CSS rule which causes `.tag.has-addons` to not work correctly * #2091 Fix #2091 -> Remove CSS rule which causes `.tag.has-addons` to not work correctly
* #2186 Fix #1130 -> Prevent `.dropdown` links underlining in `.message` component * #2186 Fix #1130 -> Prevent `.dropdown` links underlining in `.message` component
* Fix #2154 -> Move `.hero.is-fullheight-with-navbar` to `navbar.sass` file
### Deprecation ### Deprecation

View File

@@ -7159,6 +7159,10 @@ a.navbar-item:hover, a.navbar-item.is-active,
} }
} }
.hero.is-fullheight-with-navbar {
min-height: calc(100vh - 3.25rem);
}
.pagination { .pagination {
font-size: 1rem; font-size: 1rem;
margin: -0.25rem; margin: -0.25rem;
@@ -10265,10 +10269,6 @@ label.panel-block:hover {
min-height: 100vh; min-height: 100vh;
} }
.hero.is-fullheight-with-navbar {
min-height: calc(100vh - 3.25rem);
}
.hero-video { .hero-video {
overflow: hidden; overflow: hidden;
} }

View File

@@ -420,3 +420,9 @@ a.navbar-item,
&.is-active &.is-active
.navbar-link .navbar-link
background-color: $navbar-item-hover-background-color background-color: $navbar-item-hover-background-color
// Combination
.hero
&.is-fullheight-with-navbar
min-height: calc(100vh - #{$navbar-height})

View File

@@ -109,8 +109,6 @@
min-height: 50vh min-height: 50vh
&.is-fullheight &.is-fullheight
min-height: 100vh min-height: 100vh
&.is-fullheight-with-navbar
min-height: calc(100vh - #{$navbar-height})
// Components // Components