Skip to content

Commit 3da01b7

Browse files
committed
refactor(app.css): rename colors to variables
* Add max-width css variable
1 parent 8b878e3 commit 3da01b7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/css/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Base */
22
@import './base/typography.css';
3-
@import './base/colors.css';
3+
@import './base/variables.css';
44

55
/* Components */
66
@import './components/button.css';
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
:root {
2+
/* Colors */
23
--red: #e14943;
34
--darkred: #cf2821;
45
--purple: #755384;
@@ -11,4 +12,7 @@
1112
--navy: #292e37;
1213
--mutednavy: #444d5c;
1314
--divider: #f6f3f0;
15+
16+
/* Layout */
17+
--layout-inner-max-width: 1135px;
1418
}

0 commit comments

Comments
 (0)