Skip to content

Instantly share code, notes, and snippets.

@ky-zo
Created April 23, 2024 09:00
Show Gist options
  • Save ky-zo/748525371765cca5d1d4b0cb2e9e099a to your computer and use it in GitHub Desktop.
Save ky-zo/748525371765cca5d1d4b0cb2e9e099a to your computer and use it in GitHub Desktop.
Custom classess with tailwind CSS
.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