Port lightbox icon buttons

This commit is contained in:
Daniel Gasienica
2018-04-15 00:27:30 -04:00
parent 3acdeb90c3
commit 2474b42198
3 changed files with 84 additions and 12 deletions
+35
View File
@@ -7,3 +7,38 @@
height: 100%;
z-index: $z-index-modal;
}
.iconButton {
background: transparent;
width: 50px;
height: 50px;
margin-bottom: 10px;
display: inline-block;
cursor: pointer;
border-radius: 50%;
padding: 3px;
&:before {
content: '';
display: block;
width: 100%;
height: 100%;
}
&:hover {
background: $grey;
}
&.save {
&:before {
@include color-svg('../images/save.svg', white);
}
}
&.close {
&:before {
@include color-svg('../images/x.svg', white);
}
}
}