Skip to content

Instantly share code, notes, and snippets.

@humorless
Created November 27, 2025 14:22
Show Gist options
  • Select an option

  • Save humorless/0b72b34aca4dc1a0620d09c169a99dba to your computer and use it in GitHub Desktop.

Select an option

Save humorless/0b72b34aca4dc1a0620d09c169a99dba to your computer and use it in GitHub Desktop.
Example of using ornament
;; Example of using
;;
;; - #{...}
;; - "&:not()"
;; - "&:has()"
(o/defstyled form :form
...
[#{:input :textarea :select} ["&:not([type=checkbox])"
:w-full :mb-3]]
[:label ["&:has([type=checkbox])"
:flex :gap-3]]
...
)
;; Example of using
;;
;; direct CSS syntax
(o/defstyled xxx :div
...
[:h1
{:text-align :center}
[:div ["&:has(img)"
{:vertical-align :middle}]]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment