(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(garden.core/css [(garden.selectors/input (garden.selectors/attr= :type :password)) {:font-size 1}])
;;=>
input[type=\"password\"] {\n font-size: 1;\n}"