Created
July 18, 2019 19:57
-
-
Save elyosemite/15d61dd799601983562ab6b94248cbac to your computer and use it in GitHub Desktop.
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
| .modal { | |
| padding: 20px; | |
| text-align: center; | |
| background-color: #9999; | |
| } | |
| .content { | |
| display: inline-grid; | |
| justify-content: space-between; | |
| border: 1px solid white; | |
| grid-template-columns: repeat(auto-fit, minmax(0, max-content)); | |
| margin: 0 auto; | |
| max-width: 1200px; | |
| width: 100%; | |
| } | |
| .message { | |
| text-align: left; | |
| } | |
| .group { | |
| display: flex; | |
| flex-direction: row; | |
| grid-template-columns: repeat(auto-fit, minmax(50px, max-content)); | |
| column-gap: 10px; | |
| row-gap: 10px; | |
| justify-content: center; | |
| align-content: center; | |
| margin-right: 10px; | |
| } | |
| .alignLinks { | |
| display: flex; | |
| flex-direction: row; | |
| justify-content: flex-start; | |
| align-items: center; | |
| width: 100%; | |
| padding-left: 5px; | |
| } | |
| .link { | |
| margin-left: 10px; | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment