@primer/brand-css 0.58.0 → 0.58.1-rc.e240f6c8
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/components/Card/Card.css
CHANGED
|
@@ -92,12 +92,18 @@
|
|
|
92
92
|
border-radius: var(--brand-borderRadius-xlarge);
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
+
.Card__outer:has(.Card--variant-minimal) {
|
|
96
|
+
border-radius: var(--brand-borderRadius-small);
|
|
97
|
+
}
|
|
98
|
+
|
|
95
99
|
.Card__outer:focus-within {
|
|
96
100
|
outline: var(--brand-borderWidth-thick) solid var(--brand-color-focus);
|
|
97
101
|
}
|
|
98
102
|
|
|
99
103
|
.Card__outer:has(.Card--variant-minimal):focus-within {
|
|
100
|
-
outline-offset: var(
|
|
104
|
+
outline-offset: var(
|
|
105
|
+
--base-size-12
|
|
106
|
+
); /* This value is adjusted so that, when combined with the container's border radius, the total border radius equals `var(--brand-borderRadius-medium)` */
|
|
101
107
|
}
|
|
102
108
|
|
|
103
109
|
.Card--icon {
|
package/components/Icon/Icon.css
CHANGED