Skip to content

Commit eba2b2c

Browse files
authored
Fix calc typo (#2644)
* Fix calc typo * Add changeset
1 parent 8837348 commit eba2b2c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/lazy-moose-agree.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@primer/css': patch
3+
---
4+
5+
Fix 'clac' -> 'calc' typo

src/forms/radio-group.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
.radio-label {
88
float: left;
99
// stylelint-disable-next-line primer/spacing
10-
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
10+
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
1111
// stylelint-disable-next-line primer/spacing
1212
margin-left: -1px;
1313
font-size: $body-font-size;

0 commit comments

Comments
 (0)