Skip to content

Commit 2fda8f9

Browse files
committed
1 parent ad499e5 commit 2fda8f9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/argon.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -18284,7 +18284,7 @@ textarea[resize='horizontal']
1828418284
}
1828518285
.icon-lg + .icon-text
1828618286
{
18287-
width: calc(100% - $icon-size-lg - 1);
18287+
width: calc(100% - #{icon-size-lg} - 1);
1828818288
}
1828918289

1829018290
.icon-sm
@@ -18299,7 +18299,7 @@ textarea[resize='horizontal']
1829918299
}
1830018300
.icon-sm + .icon-text
1830118301
{
18302-
width: calc(100% - $icon-size-sm - 1);
18302+
width: calc(100% - #{icon-size-sm} - 1);
1830318303
}
1830418304

1830518305
.icon-shape

src/assets/scss/core/icons/_icon.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
}
2929

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

@@ -44,7 +44,7 @@
4444
}
4545

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

@@ -60,6 +60,6 @@
6060
}
6161

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

0 commit comments

Comments
 (0)