Skip to content

Commit

Permalink
fix: colors.focus warning, closes #5225
Browse files Browse the repository at this point in the history
  • Loading branch information
fbwoolf authored and kyranjamie committed May 1, 2024
1 parent 7db0d97 commit 6b53a9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions theme/recipes/button-recipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const buttonRecipe = defineRecipe({
},
_focus: {
_before: {
border: '3px solid {colors.focus}',
border: '3px solid {colors.blue.border}',
},
},
_hover: {
Expand All @@ -81,7 +81,7 @@ export const buttonRecipe = defineRecipe({
},
_focus: {
_before: {
border: '3px solid {colors.focus}',
border: '3px solid {colors.blue.border}',
},
},
_hover: {
Expand All @@ -102,7 +102,7 @@ export const buttonRecipe = defineRecipe({
},
_focus: {
_before: {
border: '3px solid {focus}',
border: '3px solid {colors.blue.border}',
},
},
_hover: {
Expand Down

0 comments on commit 6b53a9a

Please sign in to comment.