Skip to content

Instantly share code, notes, and snippets.

@michventura
Created February 8, 2022 05:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michventura/7265517015db280b27ba5f54e46bb405 to your computer and use it in GitHub Desktop.
Save michventura/7265517015db280b27ba5f54e46bb405 to your computer and use it in GitHub Desktop.
Utility classes
/* Utilities */
.flex {
display: flex;
gap: var(--gap, 1rem);
}
.grid {
display: grid;
gap: var(--gap, 1rem);
}
.container {
padding-inline: 2rem;
margin-inline: auto;
max-width: 80vw;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment