Skip to content

Instantly share code, notes, and snippets.

@umutyerebakmaz
Last active August 26, 2022 13:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save umutyerebakmaz/8e27cae072964794d79562ab2dfa2a85 to your computer and use it in GitHub Desktop.
Save umutyerebakmaz/8e27cae072964794d79562ab2dfa2a85 to your computer and use it in GitHub Desktop.
My TailwindCSS examples
.wrapper {
@apply overflow-hidden shadow ring-1 ring-black ring-opacity-5 rounded-lg;
}
.item {
@apply bg-white;
}
.item:not(:nth-child(1)) {
@apply border-t border-gray-200;
}
<div class="grid grid-cols-1 gap-5 md:grid-cols-3">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment