-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compiled css files (argon.css and argon.min.css) both contains sass variables #11
Comments
I was getting an error about this:
I solved it locally by wrapping the variables in _icons.scss with @@ -28,7 +28,7 @@
}
+ .icon-text {
- width: calc(100% - $icon-size-xl - 1);
+ width: calc(100% - #{$icon-size-xl} - 1);
}
}
@@ -44,7 +44,7 @@
}
+ .icon-text {
- width: calc(100% - $icon-size-lg - 1);
+ width: calc(100% - #{$icon-size-lg} - 1);
}
}
@@ -60,6 +60,6 @@
}
+ .icon-text {
- width: calc(100% - $icon-size-sm - 1);
+ width: calc(100% - #{$icon-size-sm} - 1);
}
} |
Same here. Any solution? |
Thank you @adriaanzon, I managed to overcome the error by using your method! |
Hi, We fixed it in our last update. Thank you, |
lucahttp
added a commit
to Primera-Generacion-AHK-Sistemas/AngularArgonDashboard
that referenced
this issue
Oct 1, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
.icon-xl + .icon-text
{
width: calc(100% - $icon-size-xl - 1);
}
...
.icon-lg + .icon-text
{
width: calc(100% - $icon-size-lg - 1);
}
...
.icon-sm + .icon-text
{
width: calc(100% - $icon-size-sm - 1);
}
The text was updated successfully, but these errors were encountered: