forstok-ui-lib 5.11.1 → 5.11.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "5.11.1",
3
+ "version": "5.11.2",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -2469,13 +2469,15 @@ export const TableItemWrapper = styled.section<{ $mode: string, $isBorder?: bool
2469
2469
  ${TableItemColumn} {
2470
2470
  width: 960px;
2471
2471
  border-bottom: 1px solid var(--pri-clr-ln);
2472
- >* {
2472
+ > * {
2473
2473
  padding: 15px 10px;
2474
2474
  }
2475
2475
  &:first-child {
2476
2476
  border-bottom: 1px solid var(--sec-clr-ln);
2477
2477
  display: grid;
2478
- > * { padding: 0 10px 12px; }
2478
+ > * {
2479
+ padding: 0 10px 12px;
2480
+ }
2479
2481
  }
2480
2482
  &:last-child { border-bottom: none; }
2481
2483
  &[role='rowheader'] {
@@ -2483,9 +2485,14 @@ export const TableItemWrapper = styled.section<{ $mode: string, $isBorder?: bool
2483
2485
  color: var(--mt-clr);
2484
2486
  }
2485
2487
  }
2488
+ @media only screen and (min-width: 768px) {
2489
+ width: auto !important;
2490
+ }
2486
2491
  @media only screen and (min-width: 1024px) {
2487
2492
  overflow-x: unset;
2488
- ${TableItemColumn} { width: unset; }
2493
+ ${TableItemColumn} {
2494
+ width: unset;
2495
+ }
2489
2496
  }
2490
2497
  ${getTableItemWrapperModFunc}
2491
2498
  `