Skip to content

Instantly share code, notes, and snippets.

@Ze1598
Created November 22, 2019 16:27
Show Gist options
  • Save Ze1598/63f0df92b158882464666a4c8579696e to your computer and use it in GitHub Desktop.
Save Ze1598/63f0df92b158882464666a4c8579696e to your computer and use it in GitHub Desktop.
Modal component: modal.component.css
#modal-content-wrapper {
width: 100%;
height: 100%;
display: grid;
grid-template-rows: repeat(1fr, 3);
}
#modal-title {
font-size: 22px;
}
#modal-footer {
justify-self: right;
align-self: center;
}
#modal-action-button {
margin-right: 30px;
background-color:#3b3b3b;
}
#modal-cancel-button {
background-color: #4e4e4e;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment