Skip to content

Instantly share code, notes, and snippets.

@owain
Created July 21, 2021 20:55
Show Gist options
  • Save owain/e66917dbc4d8426acec76af345010171 to your computer and use it in GitHub Desktop.
Save owain/e66917dbc4d8426acec76af345010171 to your computer and use it in GitHub Desktop.
Making App Blocks Responsive Using CSS Blog Post - Responsive Block Example
.grid {
display: grid;
grid-template-columns:
repeat(
auto-fit,
minmax(
clamp(50%, 350px, 100%),
1fr
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment