-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: update .gitignore Add .env and cypress/downloads to list of ignored files. * style: add prettier-plugin-tailwindcss * feat: reset css styles * chore: remove redundant import * refactor: replace scss for home component with tailwind * refactor: replace scss for login component with tailwind * refactor: replace scss for cards component with tailwind * refactor: replace scss for charts with tailwind * refactor: move ref to privacy policy to home component * refactor: replace scss for app component with tailwind * refactor: replace scss for flag component with tailwind * chore: remove settings.json * test: remove spec file for home component * test: fix broken e2e test for privacy
- Loading branch information
1 parent
20dc028
commit 2c90b6c
Showing
29 changed files
with
176 additions
and
534 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,3 +42,6 @@ testem.log | |
# System files | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# Environment | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
{ | ||
"extends": ["stylelint-config-standard", "stylelint-config-standard-scss"], | ||
"rules": { | ||
"at-rule-no-unknown": null, | ||
"scss/at-rule-no-unknown": [ | ||
true, | ||
{ | ||
"ignoreAtRules": ["tailwind"] | ||
} | ||
], | ||
"unit-allowed-list": ["em", "rem", "%", "s"] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.