Skip to content

Commit

Permalink
feat(): add top and bottom margins to images in plain gallery (reques…
Browse files Browse the repository at this point in the history
…ted by @MiaAlSaif) #169 BREAKING CHANGE
  • Loading branch information
Ks89 committed Oct 28, 2018
1 parent 2a3e046 commit 986f8ba
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ $plain-image-width: 50px;

$plain-a-tag-image-margin-left: 2px;
$plain-a-tag-image-margin-right: 2px;
$plain-a-tag-image-margin-top: 2px;
$plain-a-tag-image-margin-bottom: 2px;

.plain-container {
align-items: center;
Expand All @@ -38,6 +40,8 @@ $plain-a-tag-image-margin-right: 2px;
.image {
cursor: pointer;
height: auto;
margin-top: $plain-a-tag-image-margin-top;
margin-bottom: $plain-a-tag-image-margin-bottom;
margin-left: $plain-image-margin-left;
margin-right: $plain-image-margin-right;
width: $plain-image-width;
Expand All @@ -47,6 +51,8 @@ $plain-a-tag-image-margin-right: 2px;
cursor: pointer;
//width: 50px;
//height: auto;
margin-top: $plain-a-tag-image-margin-top;
margin-bottom: $plain-a-tag-image-margin-bottom;
margin-left: $plain-a-tag-image-margin-left;
margin-right: $plain-a-tag-image-margin-right;
}
Expand Down

0 comments on commit 986f8ba

Please # to comment.