Fixed modal footer button styles when buttons and links are mixed

no issue

- when buttons and button-like links were mixed in a modal footer, the link did not inherit the expected button styles and if the link followed a button the two became smushed together because of missing left margins
This commit is contained in:
Kevin Ansfield 2021-12-07 14:20:05 +00:00
parent 8db9bc9f2e
commit b464c69d54

View File

@ -249,14 +249,13 @@
justify-content: space-between;
}
.modal-footer button {
margin-left: 12px;
.modal-footer .gh-btn {
min-width: 100px;
text-align: center;
}
.modal-footer button:first-of-type {
margin-left: 0;
.modal-footer .gh-btn:not(:first-child) {
margin-left: 12px;
}
.modal-footer-hint {