mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
Fix #3089
This commit is contained in:
parent
223ee4493e
commit
b90d4921b3
@ -6,6 +6,7 @@
|
||||
|
||||
* #3005 Fix `column` offsets in RTL
|
||||
* Fix #3145 Dropdown content is bounded by a parent card
|
||||
* Fix #3089 Sub columns of a variable columns have weird gap
|
||||
|
||||
## 0.9.1
|
||||
|
||||
|
@ -8197,7 +8197,7 @@ label.panel-block:hover {
|
||||
margin-right: calc(-1 * var(--columnGap));
|
||||
}
|
||||
|
||||
.columns.is-variable .column {
|
||||
.columns.is-variable > .column {
|
||||
padding-left: var(--columnGap);
|
||||
padding-right: var(--columnGap);
|
||||
}
|
||||
@ -9394,6 +9394,7 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
|
||||
.is-clickable {
|
||||
cursor: pointer !important;
|
||||
pointer-events: all !important;
|
||||
}
|
||||
|
||||
.is-clipped {
|
||||
|
@ -469,7 +469,7 @@ $column-gap: 0.75rem !default
|
||||
--columnGap: 0.75rem
|
||||
+ltr-property("margin", calc(-1 * var(--columnGap)), false)
|
||||
+ltr-property("margin", calc(-1 * var(--columnGap)))
|
||||
.column
|
||||
> .column
|
||||
padding-left: var(--columnGap)
|
||||
padding-right: var(--columnGap)
|
||||
@for $i from 0 through 8
|
||||
|
Loading…
Reference in New Issue
Block a user