Skip to content

Commit 5a6a729

Browse files
DC-RomanKarpovyuberdysheva
authored andcommitted
Roman karpov/version 1.x.x/fix tab wrap (#239)
* fix(Tabs): wrap tabs on desktop
1 parent d573106 commit 5a6a729

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [1.25.3](https://github.com/gravity-ui/page-constructor/compare/v1.25.2...v1.25.3) (2023-03-27)
4+
5+
6+
### Bug Fixes
7+
8+
* **Tabs:** wrap tabs on desktop ([#237](https://github.com/gravity-ui/page-constructor/issues/237)) ([ac7dd3d](https://github.com/gravity-ui/page-constructor/commit/ac7dd3d3573c6d633d39f88507e2bfeeb41b4f8c))
9+
310
## [1.25.2](https://github.com/gravity-ui/page-constructor/compare/v1.25.1...v1.25.2) (2023-03-21)
411

512

styles/mixins.scss

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -518,18 +518,14 @@ unpredictable css rules order in build */
518518

519519
@mixin tab-panel() {
520520
display: flex;
521-
flex-wrap: nowrap;
521+
flex-wrap: wrap;
522522
justify-content: flex-start;
523-
overflow: auto;
524523

525524
&_centered {
526-
display: flex;
527525
justify-content: center;
528-
flex-wrap: wrap;
529526
}
530527

531528
@media (max-width: map-get($gridBreakpoints, 'md')) {
532-
display: flex;
533529
flex-wrap: nowrap;
534530
justify-content: flex-start;
535531
overflow: auto;

0 commit comments

Comments
 (0)