1
1
mirror of https://github.com/primer/css.git synced 2024-11-22 01:53:17 +03:00

Fix calc typo (#2644)

* Fix calc typo

* Add changeset
This commit is contained in:
Cameron Dutro 2024-06-20 15:42:07 -07:00 committed by GitHub
parent 8837348f1c
commit eba2b2c157
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
'@primer/css': patch
---
Fix 'clac' -> 'calc' typo

View File

@ -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;