Skip to content

Commit bb19e43

Browse files
author
Shane Osbourne
committed
added tailwind example
1 parent a3a926a commit bb19e43

File tree

13 files changed

+2803
-20
lines changed

13 files changed

+2803
-20
lines changed

examples/tailwind/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/dist

examples/tailwind/base.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
4+
5+
body {
6+
color: red
7+
}

examples/tailwind/index.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport"
6+
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
7+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
8+
<title>Document</title>
9+
<link rel="stylesheet" href="./dist/output.css">
10+
</head>
11+
<body class="p-2">
12+
<p class=text-4xl>hello world 8.0</p>
13+
</body>
14+
</html>
15+

0 commit comments

Comments
 (0)