diff --git a/.changeset/lazy-moose-agree.md b/.changeset/lazy-moose-agree.md new file mode 100644 index 0000000000..1ba6894a77 --- /dev/null +++ b/.changeset/lazy-moose-agree.md @@ -0,0 +1,5 @@ +--- +'@primer/css': patch +--- + +Fix 'clac' -> 'calc' typo diff --git a/src/forms/radio-group.scss b/src/forms/radio-group.scss index ce6a2f6042..8e7acae2cb 100644 --- a/src/forms/radio-group.scss +++ b/src/forms/radio-group.scss @@ -7,7 +7,7 @@ .radio-label { float: left; // stylelint-disable-next-line primer/spacing - padding: 6px var(--base-size-16) 6px clac(var(--base-size-16) + 12px + var(--base-size-8)); // 12px is the size of the radio-input + padding: 6px var(--base-size-16) 6px calc(var(--base-size-16) + 12px + var(--base-size-8)); // 12px is the size of the radio-input // stylelint-disable-next-line primer/spacing margin-left: -1px; font-size: $body-font-size;