Skip to content

Commit c84a484

Browse files
committed
Init repo
0 parents  commit c84a484

File tree

8 files changed

+21
-0
lines changed

8 files changed

+21
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/tailwind3/tailwindcss3
2+
/tailwind4/tailwindcss4

tailwind3/application.html

Whitespace-only changes.

tailwind3/input.css

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;

tailwind3/output.css

Whitespace-only changes.

tailwind3/tailwind.config.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/** @type {import('tailwindcss').Config} */
2+
module.exports = {
3+
content: ["./application.html"],
4+
theme: {
5+
extend: {},
6+
},
7+
plugins: [],
8+
}
9+

tailwind4/application.html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!-- <div class="text-tomato"></div> -->

tailwind4/input.css

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@import "tailwindcss";
2+
3+
@theme {
4+
--color-*: initial;
5+
/* --color-tomato: tomato; */
6+
}

tailwind4/output.css

Whitespace-only changes.

0 commit comments

Comments
 (0)