Skip to content

Commit ad43370

Browse files
author
Andrew Welch
committed
refactor: .pcss -> .css
1 parent 9f6ef89 commit ad43370

File tree

7 files changed

+19
-11
lines changed

7 files changed

+19
-11
lines changed
Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
* You can see the styles here:
1313
* https://github.com/tailwindcss/tailwindcss/blob/master/css/preflight.css
1414
*/
15+
1516
/**
1617
* We don't want these in the Control Panel
1718
* @import "tailwindcss/preflight";
@@ -21,33 +22,34 @@
2122
* This injects any component classes registered by plugins.
2223
*
2324
*/
24-
@import 'tailwindcss/components';
25+
@import "tailwindcss/components";
2526

2627
/**
2728
* Here we add custom component classes; stuff we want loaded
2829
* *before* the utilities so that the utilities can still
2930
* override them.
3031
*
3132
*/
32-
@import './components/webfonts.pcss';
33-
@import './components/typography.pcss';
34-
@import './components/global.pcss';
33+
@import "./components/webfonts.css";
34+
@import "./components/typography.css";
35+
@import "./components/global.css";
3536

3637
/**
3738
* This injects all of Tailwind's utility classes, generated based on your
3839
* config file.
3940
*
4041
*/
41-
@import 'tailwindcss/utilities';
42+
@import "tailwindcss/utilities";
4243

4344
/**
4445
* Include styles for individual pages
4546
*
4647
*/
47-
@import './pages/welcome.pcss';
48+
@import "./pages/settings.css";
49+
@import "./pages/welcome.css";
4850

4951
/**
5052
* Include vendor css.
5153
*
5254
*/
53-
@import 'vendor.pcss';
55+
@import "vendor.css";
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* components/typography.css
3-
*
3+
*
44
* Typography rules.
55
*
66
*/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* components/webfonts.css
3-
*
3+
*
44
* Project webfonts.
55
*
66
*/
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* pages/settings.pcss
2+
* pages/settings.css
33
*
44
* Styles for the Settings page.
55
*
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* pages/settings.css
3+
*
4+
* Styles for the Welcome page.
5+
*
6+
*/
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* vendor.css
3-
*
3+
*
44
* All vendor CSS is imported here.
55
*
66
*/

0 commit comments

Comments
 (0)