Skip to content

Commit

Permalink
Revert "fixed build errors, tailwind css needs to be fixed"
Browse files Browse the repository at this point in the history
This reverts commit e6a9e84.
  • Loading branch information
Janos committed Jan 25, 2024
1 parent c12455c commit f4418a3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 14 deletions.
7 changes: 0 additions & 7 deletions postcss.config.js

This file was deleted.

3 changes: 1 addition & 2 deletions src/styles/index.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* Base Styles*/

@import "tailwindcss/base";
@import 'typography';

Expand All @@ -25,5 +26,3 @@

/* Utilities*/
@import "tailwindcss/utilities";


6 changes: 3 additions & 3 deletions src/styles/tailwind.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@tailwindcss base;
@tailwindcss components;
@tailwindcss utilities;
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
1 change: 0 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ const { colors } = require('tailwindcss/defaultTheme')
// 63 101 127 other #3F657F dark blue

module.exports = {
content: ['./_site/*.html'],
theme: {
colors: {
primary: {
Expand Down
2 changes: 1 addition & 1 deletion webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ module.exports = {
{
ident: 'postcss',
plugins: [
require('postcss-import'),
require('tailwindcss')('tailwind.config.js'),
require('postcss-import'),
require('postcss-preset-env'),
// require('cssnano'),
],
Expand Down

0 comments on commit f4418a3

Please sign in to comment.