Skip to content

Commit

Permalink
#1: use $space SCSS vars
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanfalkowski committed Feb 18, 2019
1 parent a5f114d commit 7c8ee1d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions css/src/_modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ $z-modal-dialog: 901 !default;
.modal_dialog {
position: absolute;
z-index: $z-modal-dialog;
right: 15px;
left: 15px;
right: $space-base;
left: $space-base;
border-radius: $radius-base;
background: #FFF;
box-shadow: 0 5px 15px 5px black(0.2);
Expand Down Expand Up @@ -83,8 +83,8 @@ $z-modal-dialog: 901 !default;
@media (min-width: 600px) {

.modal_dialog {
right: 25px;
left: 25px;
right: $space-xl;
left: $space-xl;
}

}
Expand Down

0 comments on commit 7c8ee1d

Please sign in to comment.