@deque/cauldron-styles 6.7.0-canary.4be82cb3 → 6.7.0-canary.5a2f12d4
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 +34 -0
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -5693,3 +5693,37 @@ button.Accordion__trigger {
|
|
|
5693
5693
|
transition: none !important;
|
|
5694
5694
|
}
|
|
5695
5695
|
}
|
|
5696
|
+
|
|
5697
|
+
:root {
|
|
5698
|
+
--bottom-sheet-width: 40rem;
|
|
5699
|
+
--bottom-sheet-background-color: #fff;
|
|
5700
|
+
}
|
|
5701
|
+
|
|
5702
|
+
.cauldron--theme-dark {
|
|
5703
|
+
--bottom-sheet-background-color: var(--accent-medium);
|
|
5704
|
+
--bottom-sheet-text-color: #fff;
|
|
5705
|
+
}
|
|
5706
|
+
|
|
5707
|
+
.BottomSheet {
|
|
5708
|
+
max-width: var(--bottom-sheet-width);
|
|
5709
|
+
color: var(--bottom-sheet-text-color);
|
|
5710
|
+
background-color: var(--bottom-sheet-background-color);
|
|
5711
|
+
margin: 0 auto;
|
|
5712
|
+
border-top-left-radius: var(--space-small);
|
|
5713
|
+
border-top-right-radius: var(--space-small);
|
|
5714
|
+
padding: var(--space-large) var(--space-small);
|
|
5715
|
+
}
|
|
5716
|
+
|
|
5717
|
+
.BottomSheet__title {
|
|
5718
|
+
font-weight: var(--font-weight-medium);
|
|
5719
|
+
}
|
|
5720
|
+
|
|
5721
|
+
.BottomSheet__header {
|
|
5722
|
+
display: flex;
|
|
5723
|
+
align-items: center;
|
|
5724
|
+
justify-content: space-between;
|
|
5725
|
+
gap: var(--space-small);
|
|
5726
|
+
border-bottom: 1px solid var(--gray-30);
|
|
5727
|
+
padding-bottom: var(--space-small);
|
|
5728
|
+
margin-bottom: var(--space-small);
|
|
5729
|
+
}
|
package/package.json
CHANGED