1
1
mirror of https://github.com/primer/css.git synced 2024-10-03 20:07:58 +03:00

Bug fix: Removing complex padding calc on kbd (#2651)

* Removing complex padding calc on kbd

* Create nice-cats-guess.md
This commit is contained in:
Jon Rohan 2024-06-25 10:52:12 -07:00 committed by GitHub
parent 38ed48e15b
commit e329973d4d
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
---
Bug fix: Removing complex padding calc on kbd

View File

@ -3,7 +3,7 @@
kbd {
display: inline-block;
padding: calc(var(--base-size-4) - 1) calc(var(--base-size-4) + 1);
padding: var(--base-size-4);
font: 11px $mono-font;
// stylelint-disable-next-line primer/typography
line-height: 10px;