We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e57a2f5 commit 13b6af0Copy full SHA for 13b6af0
crates/oxide/src/extractor/pre_processors/clojure.rs
@@ -156,4 +156,14 @@ mod tests {
156
157
Clojure::test_extract_contains(input, vec!["hover:flex", "px-1.5"]);
158
}
159
+
160
+ // https://github.com/tailwindlabs/tailwindcss/issues/17760
161
+ #[test]
162
+ fn test_extraction_of_classes_with_dots() {
163
+ let input = r#"
164
+ ($ :div {:class [:flex :gap-1.5 :p-1]} …)
165
+ "#;
166
167
+ Clojure::test_extract_contains(input, vec!["flex", "gap-1.5", "p-1"]);
168
+ }
169
0 commit comments