Skip to content

Commit

Permalink
Fix #3089
Browse files Browse the repository at this point in the history
  • Loading branch information
jgthms committed Oct 31, 2020
1 parent 223ee44 commit b90d492
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion docs/css/bulma-docs.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion sass/grid/columns.sass
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b90d492

Please sign in to comment.