Created
February 11, 2020 07:42
-
-
Save geocine/fbf585bf96bbd433d7ffe63cb51da735 to your computer and use it in GitHub Desktop.
center vertically
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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