Skip to content

Commit

Permalink
Replacing text-indent css property with margin-left, to insure wrappi…
Browse files Browse the repository at this point in the history
…ng text will all start at the same left position.
  • Loading branch information
Christopher Behling authored and bdukes committed Mar 27, 2020
1 parent aaeff3d commit 33baec2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
.page-value {
>div {
font-size: 15px;
text-indent: 20px;
margin-left: 20px;
line-height: 16px;
svg {
width: 16px;
Expand All @@ -104,10 +104,10 @@
}
}
&.text-with-page-icon {
text-indent: 40px;
margin-left: 40px;
}
&.no-icon {
text-indent: 0px;
margin-left: 0px;
}
&:hover {
color: @curiousBlue;
Expand Down

0 comments on commit 33baec2

Please sign in to comment.