Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lucahttp committed Oct 1, 2020
1 parent ad499e5 commit 2fda8f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/argon.css
Original file line number Diff line number Diff line change
Expand Up @@ -18284,7 +18284,7 @@ textarea[resize='horizontal']
}
.icon-lg + .icon-text
{
width: calc(100% - $icon-size-lg - 1);
width: calc(100% - #{icon-size-lg} - 1);
}

.icon-sm
Expand All @@ -18299,7 +18299,7 @@ textarea[resize='horizontal']
}
.icon-sm + .icon-text
{
width: calc(100% - $icon-size-sm - 1);
width: calc(100% - #{icon-size-sm} - 1);
}

.icon-shape
Expand Down
6 changes: 3 additions & 3 deletions src/assets/scss/core/icons/_icon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}

+ .icon-text {
width: calc(100% - $icon-size-xl - 1);
width: calc(100% - #{$icon-size-xl} - 1);
}
}

Expand All @@ -44,7 +44,7 @@
}

+ .icon-text {
width: calc(100% - $icon-size-lg - 1);
width: calc(100% - #{$icon-size-lg} - 1);
}
}

Expand All @@ -60,6 +60,6 @@
}

+ .icon-text {
width: calc(100% - $icon-size-sm - 1);
width: calc(100% - #{$icon-size-sm} - 1);
}
}

0 comments on commit 2fda8f9

Please sign in to comment.