Last active
December 13, 2024 05:34
-
-
Save iamjazzar/0be279c6c4e22f4ef3de0c11a45553c7 to your computer and use it in GitHub Desktop.
Tailwind Button Glow
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** @type {import('tailwindcss').Config} */ | |
export default { | |
theme: { | |
extend: { | |
// ... | |
boxShadow: { | |
in: 'inset 0 1px 0 0 rgb(250 250 250 / .2)', | |
'in-reverse': 'inset 1px 1px 0 0 rgb(250 250 250 / .2)', | |
'inner-reverse': 'inset 1px 2px 0 0 rgb(250 250 250)', | |
}, | |
}, | |
}, | |
plugins: [], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment