Last active
October 19, 2020 21:29
-
-
Save romaefGit/878b1545488e7e6f4ddba7806e717da5 to your computer and use it in GitHub Desktop.
This is usefull when you had something to put in the center with every height
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
| .main-container { | |
| background: #ddddd; | |
| height: 100vh; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| &__box { | |
| background: white; | |
| height: 100px; | |
| max-width: 70%; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment