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