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

Commit

Permalink
fix(checkbox): adds some margin to checkboxes
Browse files Browse the repository at this point in the history
  • Loading branch information
vbudhram committed Oct 15, 2018
1 parent 7c53ab7 commit 7a52a69
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions app/styles/modules/_custom-rows.scss
Expand Up @@ -71,7 +71,6 @@
html[dir='rtl'] & {
text-align: right;
}

}

input[type='checkbox'] {
Expand All @@ -87,7 +86,15 @@ input[type='checkbox'] {
cursor: pointer;
display: inline-block;
height: 18px;
margin-inline-start: 4px;

html[dir='ltr'] & {
margin-right: 4px;
}

html[dir='rtl'] & {
margin-left: 4px;
}

padding: 0 !important;
width: 18px;

Expand Down

0 comments on commit 7a52a69

Please sign in to comment.