mirror of
https://github.com/jgthms/bulma
synced 2026-03-15 02:04:29 -07:00
Fix #2154
This commit is contained in:
@@ -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
|
||||||
|
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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})
|
||||||
|
|||||||
@@ -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
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user