[Bug] Fix icon alignment in buttons (#360)

* Fix icon alignment in buttons

* Fix ordering
This commit is contained in:
Pranav Raj S
2019-12-13 15:26:14 +05:30
committed by Sojan Jose
parent 5b275ea157
commit 19852b60cd
5 changed files with 11 additions and 11 deletions

View File

@@ -41,11 +41,6 @@ body {
.content-box {
overflow: scroll;
@include padding($space-normal);
.btn-fixed-right-top {
position: fixed;
top: $space-small;
right: $space-small;
}
}
.back-button {

View File

@@ -4,7 +4,7 @@
padding-right: $space-normal;
i {
padding-right: $space-one;
padding-right: $space-small;
}
}
@@ -25,7 +25,12 @@
}
> .icon {
font-size: $font-size-mini;
margin-right: $space-smaller;
font-size: $font-size-default;
}
}
.button--fixed-right-top {
position: fixed;
right: $space-small;
top: $space-small;
}