@idds/styles 1.0.30 → 1.0.31
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 +1 -1
- package/src/components/toast.css +6 -0
package/package.json
CHANGED
package/src/components/toast.css
CHANGED
|
@@ -118,16 +118,22 @@
|
|
|
118
118
|
min-width: 0; /* Allow text to shrink below content size */
|
|
119
119
|
overflow-wrap: break-word;
|
|
120
120
|
word-break: break-word;
|
|
121
|
+
margin: 0;
|
|
122
|
+
padding: 0;
|
|
121
123
|
}
|
|
122
124
|
|
|
123
125
|
.ina-toast__title {
|
|
124
126
|
font-size: var(--ina-font-xs);
|
|
125
127
|
font-weight: 500;
|
|
126
128
|
line-height: 1.4;
|
|
129
|
+
margin: 0;
|
|
130
|
+
padding: 0;
|
|
127
131
|
}
|
|
128
132
|
|
|
129
133
|
.ina-toast__description {
|
|
130
134
|
margin-top: var(--ina-spacing-1);
|
|
135
|
+
margin-bottom: 0;
|
|
136
|
+
padding: 0;
|
|
131
137
|
font-size: var(--ina-font-2xs);
|
|
132
138
|
line-height: 1.4;
|
|
133
139
|
}
|