scalacss
scalacss copied to clipboard
DSL for calc()
How can I generate such style ? Again, I did not find any reference in the doc for the "calc" keyword.
font-size: calc(16px + 2vmin);
calc
isn't supported via the DSL yet. For now you have to use the unsafe syntax:
fontSize :=! "calc(16px + 2vmin)"
Thanks, that does the job for the moment.