* #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
+* Fix #2937 Add `width: unset` for narrow columns
### Improvements
.columns.is-mobile > .column.is-narrow {
flex: none;
+ width: unset;
}
.columns.is-mobile > .column.is-full {
@media screen and (max-width: 768px) {
.column.is-narrow-mobile {
flex: none;
+ width: unset;
}
.column.is-full-mobile {
flex: none;
@media screen and (min-width: 769px), print {
.column.is-narrow, .column.is-narrow-tablet {
flex: none;
+ width: unset;
}
.column.is-full, .column.is-full-tablet {
flex: none;
@media screen and (max-width: 1023px) {
.column.is-narrow-touch {
flex: none;
+ width: unset;
}
.column.is-full-touch {
flex: none;
@media screen and (min-width: 1024px) {
.column.is-narrow-desktop {
flex: none;
+ width: unset;
}
.column.is-full-desktop {
flex: none;
@media screen and (min-width: 1216px) {
.column.is-narrow-widescreen {
flex: none;
+ width: unset;
}
.column.is-full-widescreen {
flex: none;
@media screen and (min-width: 1408px) {
.column.is-narrow-fullhd {
flex: none;
+ width: unset;
}
.column.is-full-fullhd {
flex: none;