robot-toast 1.0.1-beta-0 → 1.0.1
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/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -123,8 +123,9 @@
|
|
|
123
123
|
.robot-toast-message {
|
|
124
124
|
position: relative;
|
|
125
125
|
width: fit-content;
|
|
126
|
+
min-width: 120px;
|
|
126
127
|
max-width: min(400px, calc(100vw - 120px));
|
|
127
|
-
padding: 14px
|
|
128
|
+
padding: 14px 40px 0 14px;
|
|
128
129
|
border-radius: 8px;
|
|
129
130
|
margin: 0;
|
|
130
131
|
opacity: 0;
|
|
@@ -571,9 +572,10 @@
|
|
|
571
572
|
}
|
|
572
573
|
|
|
573
574
|
.robot-toast-message {
|
|
575
|
+
min-width: 100px;
|
|
574
576
|
max-width: calc(100vw - 48px - 24px - 8px);
|
|
575
577
|
font-size: 13px;
|
|
576
|
-
padding: 12px
|
|
578
|
+
padding: 12px 36px 0 12px;
|
|
577
579
|
}
|
|
578
580
|
|
|
579
581
|
.robot-toast-text {
|