garden

steven kent 2021-05-16T15:55:36.003400Z

(garden.core/css [:input (garden.selectors/attr= :type :password) {:font-size (rem 1.2)}])
"input, [type=\"password\"] {\n  font-size: 1.2rem;\n}"
Will someone please help me understand how to get input[type=\"password\"] instead of input, [type=\"password\"]? Thanks

jimmy 2021-05-16T17:32:53.003800Z

(garden.core/css [(garden.selectors/input (garden.selectors/attr= :type :password)) {:font-size 1}])

;;=>
input[type=\"password\"] {\n  font-size: 1;\n}"

👍 1