@primer/css 20.6.1-rc.d22a9416 → 20.6.1

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.
@@ -50,7 +50,7 @@
50
50
  @mixin Field {
51
51
  color: var(--color-fg-default);
52
52
  background-color: var(--color-canvas-default);
53
- border: solid var(--primer-borderWidth-thin, 1px) var(--color-border-default);
53
+ border: var(--primer-borderWidth-thin, 1px) solid var(--color-border-default);
54
54
 
55
55
  &[disabled] {
56
56
  color: var(--color-primer-fg-disabled);
@@ -530,7 +530,7 @@ input[type='checkbox'].FormControl-checkbox {
530
530
  margin: 0;
531
531
  margin-top: 0.125rem; // 2px to center align with label (20px line-height)
532
532
  cursor: pointer;
533
- border: solid var(--primer-borderWidth-thin, 1px) var(--color-border-default);
533
+ border-color: var(--color-neutral-emphasis);
534
534
  border-radius: var(--primer-borderRadius-small, 3px);
535
535
  transition: background-color, border-color 80ms cubic-bezier(0.33, 1, 0.68, 1); // checked -> unchecked - add 120ms delay to fully see animation-out
536
536
  appearance: none;
@@ -624,6 +624,7 @@ input[type='radio'].FormControl-radio {
624
624
  margin: 0;
625
625
  margin-top: 0.125rem; // 2px to center align with label (20px line-height)
626
626
  cursor: pointer;
627
+ border-color: var(--color-neutral-emphasis);
627
628
  border-radius: var(--primer-borderRadius-full, 100vh);
628
629
  transition: background-color, border-color 80ms cubic-bezier(0.33, 1, 0.68, 1); // checked -> unchecked - add 120ms delay to fully see animation-out
629
630
  appearance: none;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primer/css",
3
- "version": "20.6.1-rc.d22a9416",
3
+ "version": "20.6.1",
4
4
  "description": "The CSS implementation of GitHub's Primer Design System",
5
5
  "homepage": "https://primer.style/css",
6
6
  "author": "GitHub, Inc.",