💄(frontend) add margin to the close Dialog button

When hovered, button's borders were touching the Dialog borders,
which did feel great.
This commit is contained in:
lebaudantoine
2024-08-19 17:53:12 +02:00
committed by aleb_the_flash
parent cac58f49d3
commit 88fadd1d61

View File

@@ -8,8 +8,9 @@ import { cva } from '@/styled-system/css'
*/
export const menuItemRecipe = cva({
base: {
paddingY: '0.4rem',
paddingY: 0.125,
paddingX: 0.5,
paddingLeft: 1.5,
textAlign: 'left',
width: 'full',
borderRadius: 4,
@@ -42,6 +43,8 @@ export const menuItemRecipe = cva({
display: 'flex',
alignItems: 'center',
gap: '1rem',
paddingY: '0.4rem',
paddingLeft: 0.5,
},
},
},