forstok-ui-lib 5.8.5 → 5.8.7

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.8.5",
3
+ "version": "5.8.7",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -146,14 +146,15 @@ export const MessageWrapper = styled.section<{ $isOpen: boolean }>`
146
146
  border-radius: var(--ter-rd);
147
147
  overflow: hidden;
148
148
  transition: opacity .4s;
149
- width: auto;
150
- min-width: 600px;
149
+ width: 300px;
151
150
  padding: 0;
152
151
  position: relative;
153
152
  display: inline-grid;
154
153
  grid-auto-flow: row;
154
+ max-width: 300px;
155
155
  @media only screen and (min-width: 768px) {
156
- min-width: 600px;
156
+ width: 600px;
157
+ max-width: 600px;
157
158
  }
158
159
  ${({ $isOpen }:{ $isOpen: boolean }) => {
159
160
  if ($isOpen) {