@deque/cauldron-styles 5.7.0-canary.f86d18ec → 5.7.1-canary.0dd10f2c
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 +9 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -4345,6 +4345,14 @@ fieldset.Panel {
|
|
|
4345
4345
|
}
|
|
4346
4346
|
}
|
|
4347
4347
|
|
|
4348
|
+
:root {
|
|
4349
|
+
--breadcrumb-separator-color: var(--gray-60);
|
|
4350
|
+
}
|
|
4351
|
+
|
|
4352
|
+
.cauldron--theme-dark {
|
|
4353
|
+
--breadcrumb-separator-color: var(--accent-light);
|
|
4354
|
+
}
|
|
4355
|
+
|
|
4348
4356
|
.Breadcrumb ol {
|
|
4349
4357
|
display: block;
|
|
4350
4358
|
word-break: break-all;
|
|
@@ -4355,8 +4363,8 @@ fieldset.Panel {
|
|
|
4355
4363
|
}
|
|
4356
4364
|
|
|
4357
4365
|
.Breadcrumb__Separator {
|
|
4358
|
-
color: var(--gray-40);
|
|
4359
4366
|
padding: 0 var(--space-half);
|
|
4367
|
+
color: var(--breadcrumb-separator-color);
|
|
4360
4368
|
}
|
|
4361
4369
|
|
|
4362
4370
|
.Breadcrumb__Link {
|
package/package.json
CHANGED