There is a variable in your final css file: $icon-size-xl. I mean in argon-design-system.css. And it seems that variables in calc is not working in sass... or it is a bug. Because also when i do render sass with laravel mix i got an error. I removed it from sass to fix this for my deployment:
width: calc(100%); instead of width: calc(100% - $icon-size-xl - 1);
Hi.
There is a variable in your final css file: $icon-size-xl. I mean in argon-design-system.css. And it seems that variables in calc is not working in sass... or it is a bug. Because also when i do render sass with laravel mix i got an error. I removed it from sass to fix this for my deployment:
width: calc(100%); instead of width: calc(100% - $icon-size-xl - 1);
UPDATE:
I found also this: https://github.com/creativetimofficial/argon-dashboard/issues/11 ... maybe this is the answer.