Adjust modal border radius to match design spec

Set modal border radius to 0.25rem
With 16px default font size, should match the 4px from the design spec
Before this, it was the bootstrap default (0.3rem = 4.8px)
This commit is contained in:
mfluharty 2019-07-05 10:44:46 -06:00
parent db1b15e424
commit 26f7e8a13a
No known key found for this signature in database
GPG key ID: 6FDA03A308D239E8

View file

@ -86,6 +86,10 @@ body.modal-open {
.modal {
background-color: $black-transparent;
.modal-content {
border-radius: 0.25rem;
}
@include media-breakpoint-up(sm) {
.modal-dialog {
margin: 64px auto;