@gravity-ui/page-constructor 1.25.2 → 1.25.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
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
+
3
10
  ## [1.25.2](https://github.com/gravity-ui/page-constructor/compare/v1.25.1...v1.25.2) (2023-03-21)
4
11
 
5
12
 
@@ -16,18 +16,14 @@ unpredictable css rules order in build */
16
16
  .pc-filter-block__tabs {
17
17
  margin-bottom: 0;
18
18
  display: flex;
19
- flex-wrap: nowrap;
19
+ flex-wrap: wrap;
20
20
  justify-content: flex-start;
21
- overflow: auto;
22
21
  }
23
22
  .pc-filter-block__tabs_centered {
24
- display: flex;
25
23
  justify-content: center;
26
- flex-wrap: wrap;
27
24
  }
28
25
  @media (max-width: 769px) {
29
26
  .pc-filter-block__tabs {
30
- display: flex;
31
27
  flex-wrap: nowrap;
32
28
  justify-content: flex-start;
33
29
  overflow: auto;
@@ -16,18 +16,14 @@ unpredictable css rules order in build */
16
16
  .pc-tabs-block__tabs {
17
17
  margin-bottom: 20px;
18
18
  display: flex;
19
- flex-wrap: nowrap;
19
+ flex-wrap: wrap;
20
20
  justify-content: flex-start;
21
- overflow: auto;
22
21
  }
23
22
  .pc-tabs-block__tabs_centered {
24
- display: flex;
25
23
  justify-content: center;
26
- flex-wrap: wrap;
27
24
  }
28
25
  @media (max-width: 769px) {
29
26
  .pc-tabs-block__tabs {
30
- display: flex;
31
27
  flex-wrap: nowrap;
32
28
  justify-content: flex-start;
33
29
  overflow: auto;
@@ -16,18 +16,14 @@ unpredictable css rules order in build */
16
16
  .pc-filter-block__tabs {
17
17
  margin-bottom: 0;
18
18
  display: flex;
19
- flex-wrap: nowrap;
19
+ flex-wrap: wrap;
20
20
  justify-content: flex-start;
21
- overflow: auto;
22
21
  }
23
22
  .pc-filter-block__tabs_centered {
24
- display: flex;
25
23
  justify-content: center;
26
- flex-wrap: wrap;
27
24
  }
28
25
  @media (max-width: 769px) {
29
26
  .pc-filter-block__tabs {
30
- display: flex;
31
27
  flex-wrap: nowrap;
32
28
  justify-content: flex-start;
33
29
  overflow: auto;
@@ -16,18 +16,14 @@ unpredictable css rules order in build */
16
16
  .pc-tabs-block__tabs {
17
17
  margin-bottom: 20px;
18
18
  display: flex;
19
- flex-wrap: nowrap;
19
+ flex-wrap: wrap;
20
20
  justify-content: flex-start;
21
- overflow: auto;
22
21
  }
23
22
  .pc-tabs-block__tabs_centered {
24
- display: flex;
25
23
  justify-content: center;
26
- flex-wrap: wrap;
27
24
  }
28
25
  @media (max-width: 769px) {
29
26
  .pc-tabs-block__tabs {
30
- display: flex;
31
27
  flex-wrap: nowrap;
32
28
  justify-content: flex-start;
33
29
  overflow: auto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-ui/page-constructor",
3
- "version": "1.25.2",
3
+ "version": "1.25.3",
4
4
  "description": "Gravity UI Page Constructor",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -518,18 +518,14 @@ unpredictable css rules order in build */
518
518
 
519
519
  @mixin tab-panel() {
520
520
  display: flex;
521
- flex-wrap: nowrap;
521
+ flex-wrap: wrap;
522
522
  justify-content: flex-start;
523
- overflow: auto;
524
523
 
525
524
  &_centered {
526
- display: flex;
527
525
  justify-content: center;
528
- flex-wrap: wrap;
529
526
  }
530
527
 
531
528
  @media (max-width: map-get($gridBreakpoints, 'md')) {
532
- display: flex;
533
529
  flex-wrap: nowrap;
534
530
  justify-content: flex-start;
535
531
  overflow: auto;