Created
April 23, 2024 09:00
-
-
Save ky-zo/748525371765cca5d1d4b0cb2e9e099a to your computer and use it in GitHub Desktop.
Custom classess with tailwind CSS
This file contains 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
.shadow-neumorphic { | |
@apply shadow-[5px_5px_30px_rgba(190,190,190,0.15),-5px_-5px_30px_rgba(255,255,255,0.15)]; | |
} | |
.flex-center { | |
@apply flex items-center justify-center; | |
} | |
.flex-between { | |
@apply flex items-center justify-between; | |
} | |
.test-red { | |
@apply border-2 border-red-500; | |
} | |
.test-blue { | |
@apply border-2 border-blue-500; | |
} | |
.test-green { | |
@apply border-2 border-green-500; | |
} | |
.test-purple { | |
@apply border-2 border-purple-500; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment