Skip to content

Instantly share code, notes, and snippets.

@geocine
Created February 11, 2020 07:42
Show Gist options
  • Save geocine/fbf585bf96bbd433d7ffe63cb51da735 to your computer and use it in GitHub Desktop.
Save geocine/fbf585bf96bbd433d7ffe63cb51da735 to your computer and use it in GitHub Desktop.
center vertically
div {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 10px;
grid-auto-rows: calc(50vh - 5px);
grid-template-areas:
'. a a .'
'. a a .';
.ant-spin-spinning {
grid-area: a;
align-self: center;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment