Skip to content

Commit

Permalink
Merge pull request #114 from mpotane/main
Browse files Browse the repository at this point in the history
Add tailwind 馃崈 as a dependency
  • Loading branch information
jofftiquez committed Oct 3, 2023
2 parents aaa02aa + 90ccbc3 commit cd084e7
Show file tree
Hide file tree
Showing 9 changed files with 2,577 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
200.html
.idea
package-lock.json
yarn.lock
node_modules
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
Expand Down
16 changes: 16 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,22 @@ git push origin YourBranchName

---

## 馃崈 Running tailwindcss in environment watch mode

Enter the following command in your terminal:

```bash
yarn dlx tailwindcss -i global.css -o index.css --watch
```

add the following line to your `index.html` file:

```html
<link rel="stylesheet" href="index.css" />
```

---

## Style Guide for Git Commit Messages :memo:

**How you can add more value to your contribution logs:**
Expand Down
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
// eslint-disable-next-line no-undef
module.exports = {extends: ['@commitlint/config-conventional']}
3 changes: 3 additions & 0 deletions global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
Loading

0 comments on commit cd084e7

Please sign in to comment.