Skip to content

Commit b399aa9

Browse files
committed
Setup and Install
1 parent cf36555 commit b399aa9

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,6 @@ Network Trash Folder
2727
Temporary Items
2828
.apdisk
2929

30-
node_modules
30+
.vscode
31+
node_modules
32+
reference

public/css/tailwind.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<link rel="stylesheet" href="css/tailwind.css" />
77
</head>
88
<body>
9-
<div class="flex justify-center items-center h-screen">
10-
<div class="p-20 text-center">
9+
<div class="wrapper">
10+
<div class="card">
1111
<h1 class="text-9xl text-cwc-red">Tailwindcss 2.0</h1>
1212
<p class="text-4xl text-cwc-blue">Is Now Here!</p>
1313
</div>

src/css/tailwind.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
@tailwind components;
33
@tailwind utilities;
44

5+
.wrapper {
6+
@apply flex justify-center items-center h-screen;
7+
}
8+
.card {
9+
@apply p-20 text-center;
10+
}
11+
512
.code {
613
@apply text-cwc-red;
714
}

0 commit comments

Comments
 (0)