@deque/cauldron-styles 3.0.1-canary.db7b06be → 3.0.1-canary.ec8e93ab
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.css +3 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -888,7 +888,7 @@ button.Link {
|
|
|
888
888
|
}
|
|
889
889
|
|
|
890
890
|
.Dialog__content {
|
|
891
|
-
padding:
|
|
891
|
+
padding: var(--dialog-padding);
|
|
892
892
|
}
|
|
893
893
|
|
|
894
894
|
.Dialog__content p:first-child {
|
|
@@ -940,6 +940,7 @@ button.Link {
|
|
|
940
940
|
display: flex;
|
|
941
941
|
justify-content: center;
|
|
942
942
|
border-top: none;
|
|
943
|
+
padding-top: 0;
|
|
943
944
|
}
|
|
944
945
|
|
|
945
946
|
/* Dark Theme */
|
|
@@ -1956,7 +1957,6 @@ p .Link {
|
|
|
1956
1957
|
}
|
|
1957
1958
|
|
|
1958
1959
|
.Field__select--disabled {
|
|
1959
|
-
background: var(--field-background-color-disabled);
|
|
1960
1960
|
opacity: 0.65;
|
|
1961
1961
|
}
|
|
1962
1962
|
|
|
@@ -2281,6 +2281,7 @@ p .Link {
|
|
|
2281
2281
|
.Toast__dismiss {
|
|
2282
2282
|
background: transparent;
|
|
2283
2283
|
border: 0;
|
|
2284
|
+
height: calc(var(--text-size-small) + 9px);
|
|
2284
2285
|
}
|
|
2285
2286
|
|
|
2286
2287
|
.Toast__dismiss:focus {
|
package/package.json
CHANGED