From 539e30e8fa89e3a6f7d9593dc92f9d54f61d3df2 Mon Sep 17 00:00:00 2001 From: Ben Altair Date: Mon, 26 Apr 2021 14:53:49 -0700 Subject: [PATCH] Added literal quotes for LESS (why is LESS so bad) https://github.com/less/less.js/issues/974#issuecomment-9229470 --- styles/components/registrationForm.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/styles/components/registrationForm.less b/styles/components/registrationForm.less index 6f20b4d..c5143d9 100644 --- a/styles/components/registrationForm.less +++ b/styles/components/registrationForm.less @@ -123,7 +123,7 @@ fieldset { .form-control { all: revert; padding: 0.5em; - width: calc(100% - 0.5em * 2); /* Would be better to use custom properties, but crashed CSS processing (#51) */ + width: ~"calc(100% - 0.5em * 2)"; /* Would be better to use custom properties, but crashed CSS processing (#51) */ border-color: lightgrey; border: 1px solid #ced4da; border-radius: 0.3em;