We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
I tried to translate this piece of CSS to Garden but couldn't figure out how to do :
@supports ((position: -webkit-sticky) or (position: sticky)) { .sidebar-sticky { position: -webkit-sticky; position: sticky; } }
This comes from the Dashboard example from Bootstrap 4 (in dashboard.css)
dashboard.css
Is there a general way to write a block like this :
@<name> (<conditions>) { <rules> }
Meanwhile I cheated with
(str (css ...) (clojure.string/replace "@supports ..." #"\s*" "") (css ...))
Thank you very much
The text was updated successfully, but these errors were encountered:
should be good enough for showing all the use case
garden/test/garden/compiler_test.cljc
Line 120 in 2b5cde3
Sorry, something went wrong.
No branches or pull requests
Hello,
I tried to translate this piece of CSS to Garden but couldn't figure out how to do :
This comes from the Dashboard example from Bootstrap 4 (in
dashboard.css
)Is there a general way to write a block like this :
Meanwhile I cheated with
Thank you very much
The text was updated successfully, but these errors were encountered: