Last active
December 28, 2019 17:11
-
-
Save Ze1598/deadbca2e9e2f2666cc597fb929b7902 to your computer and use it in GitHub Desktop.
Reusable modal component: modal.component.css
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-content-wrapper { | |
width: 100%; | |
height: 100%; | |
display: grid; | |
color: white; | |
} | |
#modal-title { | |
font-size: 22px; | |
} | |
#modal-footer { | |
justify-self: right; | |
align-self: center; | |
} | |
#modal-action-button { | |
margin-right: 30px; | |
background-color:#3b3b3b; | |
color: white; | |
} | |
#modal-cancel-button { | |
background-color: #4e4e4e; | |
color: white; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment