Skip to content

Commit

Permalink
Fix calc typo (#2644)
Browse files Browse the repository at this point in the history
* Fix calc typo

* Add changeset
  • Loading branch information
camertron committed Jun 20, 2024
1 parent 8837348 commit eba2b2c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/lazy-moose-agree.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@primer/css': patch
---

Fix 'clac' -> 'calc' typo
2 changes: 1 addition & 1 deletion src/forms/radio-group.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit eba2b2c

Please sign in to comment.