forstok-ui-lib 6.16.3 → 6.18.0

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": "6.16.3",
3
+ "version": "6.18.0",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -4286,6 +4286,12 @@ export const NavList = styled.ul`
4286
4286
  height: calc(100vh - 48px);
4287
4287
  width: 187px;
4288
4288
  padding: .5rem .5rem 0;
4289
+ @media only screen and (min-width: 768px) {
4290
+ width: 45%;
4291
+ }
4292
+ @media only screen and (min-width: 1280px) {
4293
+ width: 187px;
4294
+ }
4289
4295
  @media only screen and (min-width: 1366px) {
4290
4296
  width: 220px;
4291
4297
  }
@@ -72,6 +72,7 @@ const getTextModifiedStyled = ({ $color, $elipsis }:{ $color?: string, $elipsis:
72
72
 
73
73
  export const TextContainer = styled.span<{ $color?: string, $elipsis: boolean }>`
74
74
  display: grid;
75
+ line-height: normal;
75
76
  i {
76
77
  display: inline-block;
77
78
  margin-left: 5px;