This commit is contained in:
Alex
2024-07-06 19:17:37 -04:00
parent a05b1222b5
commit 53ac883c18
14 changed files with 259 additions and 200 deletions

View File

@ -0,0 +1,41 @@
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`babel-tailwind > passes through \`group\` className 1`] = `
"var index_default = "tw-qcda3o group";
export {
index_default as default
};"
`;
exports[`babel-tailwind > passes through \`group\` className 2`] = `
".tw-qcda3o:hover {
text-align: center;
}"
`;
exports[`babel-tailwind > supports grouped tw 1`] = `
"var index_default = "tw-4cbsua";
export {
index_default as default
};"
`;
exports[`babel-tailwind > supports grouped tw 2`] = `
".tw-4cbsua {
display: flex;
font-size: 0.875rem;
line-height: 1.25rem;
}
.group:hover .tw-4cbsua {
text-align: center;
}
.tw-4cbsua[data-nested=true] {
border-width: 1px;
}
.tw-4cbsua[data-name=hello] {
text-align: right;
}
.tw-4cbsua > div {
font-weight: 600;
}"
`;