mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
Fix #2154
This commit is contained in:
parent
892c7e7d3b
commit
c50cc06e5a
@ -19,6 +19,7 @@
|
||||
* #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
|
||||
* #2186 Fix #1130 -> Prevent `.dropdown` links underlining in `.message` component
|
||||
* Fix #2154 -> Move `.hero.is-fullheight-with-navbar` to `navbar.sass` file
|
||||
|
||||
### Deprecation
|
||||
|
||||
|
@ -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 {
|
||||
font-size: 1rem;
|
||||
margin: -0.25rem;
|
||||
@ -10265,10 +10269,6 @@ label.panel-block:hover {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.hero.is-fullheight-with-navbar {
|
||||
min-height: calc(100vh - 3.25rem);
|
||||
}
|
||||
|
||||
.hero-video {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
@ -420,3 +420,9 @@ a.navbar-item,
|
||||
&.is-active
|
||||
.navbar-link
|
||||
background-color: $navbar-item-hover-background-color
|
||||
|
||||
// Combination
|
||||
|
||||
.hero
|
||||
&.is-fullheight-with-navbar
|
||||
min-height: calc(100vh - #{$navbar-height})
|
||||
|
@ -109,8 +109,6 @@
|
||||
min-height: 50vh
|
||||
&.is-fullheight
|
||||
min-height: 100vh
|
||||
&.is-fullheight-with-navbar
|
||||
min-height: calc(100vh - #{$navbar-height})
|
||||
|
||||
// Components
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user