Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
feat: add parameters for max-width and min-height
Browse files Browse the repository at this point in the history
  • Loading branch information
GusBaamonde committed Mar 26, 2019
1 parent 8bcf548 commit 07998a2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions assets/scss/modules/_box.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
@mixin dp-box ($color, $width){
@mixin dp-box ($color, $width, $max-width, $min-height){
border-radius: $dp-border-radius;
width: $width;
max-width: 408px;
padding: 40px 30px;
overflow: hidden;
max-width: $max-width;
min-height: $min-height;
border:1px solid $color;
min-height: 395px;
box-shadow: 0 0 0 4px rgba($color,.3);
overflow: hidden;
padding: 3em 1.5em;
}

0 comments on commit 07998a2

Please sign in to comment.