@@ -13,19 +13,31 @@ Generated by [AVA](https://avajs.dev).
1313 ␊
1414 class SimpleComponent extends lit.LitElement {␊
1515 static styles = lit.css\`.static {␊
16- position: static␊
16+ position\\ : static␊
1717 }␊
1818 .text-purple-400 {␊
19- --tw-text-opacity: 1;␊
20- color: rgba(167, 139, 250, var(--tw-text-opacity))␊
19+ --tw-text-opacity\\ : 1;␊
20+ color\\ : rgba(167, 139, 250, var(--tw-text-opacity))␊
2121 }␊
22- .hover_text-green-500:hover {␊
23- --tw-text-opacity: 1;␊
24- color: rgba(16, 185, 129, var(--tw-text-opacity))␊
22+ .hover\\\\:text-green-500\\:hover {␊
23+ --tw-text-opacity\\: 1;␊
24+ color\\: rgba(16, 185, 129, var(--tw-text-opacity))␊
25+ }␊
26+ @media (min-width\\: 768px) {␊
27+ .md\\\\:text-red-400 {␊
28+ --tw-text-opacity\\: 1;␊
29+ color\\: rgba(248, 113, 113, var(--tw-text-opacity))␊
30+ }␊
31+ .md\\\\:hover\\\\:text-indigo-900\\:hover {␊
32+ --tw-text-opacity\\: 1;␊
33+ color\\: rgba(49, 46, 129, var(--tw-text-opacity))␊
34+ }␊
2535 }\`;␊
2636 ␊
2737 render() {␊
28- return lit.html\`<h1 class="text-purple-400 hover_text-green-500">␊
38+ return lit.html\`<h1␊
39+ class="text-purple-400 hover:text-green-500 md:text-red-400 md:hover:text-indigo-900"␊
40+ >␊
2941 Hello, world!␊
3042 </h1>\`;␊
3143 }␊
0 commit comments