Skip to content

Commit 0d7fc59

Browse files
authored
Merge pull request #13453 from TylerAPfledderer/fix/global-css-var-annotations
[Tailwind] fix(global.css): update variable annotations
2 parents 68e2f91 + 5c16a02 commit 0d7fc59

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/styles/global.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@
6464
--primary-hover: var(--blue-400);
6565
--primary-visited: var(--blue-700);
6666
/* ! Deprecating primary-light */
67-
--primary-light: var(--blue.100);
67+
--primary-light: var(--blue-100);
6868
/* ! Deprecating primary-dark */
69-
--primary-dark: var(--blue.700);
69+
--primary-dark: var(--blue-700);
7070
/* ! Deprecating primary-pressed */
71-
--primary-pressed: var(--blue.400);
71+
--primary-pressed: var(--blue-400);
7272

7373
--body: var(--gray-800);
7474
--body-medium: var(--gray-500);
@@ -125,11 +125,11 @@
125125
--primary-hover: var(--orange-400);
126126
--primary-visited: var(--orange-550);
127127
/* ! Deprecating primary-light */
128-
--primary-light: var(--orange.100);
128+
--primary-light: var(--orange-100);
129129
/* ! Deprecating primary-dark */
130-
--primary-dark: var(--orange.800);
130+
--primary-dark: var(--orange-800);
131131
/* ! Deprecating primary-pressed */
132-
--primary-pressed: var(--orange.800);
132+
--primary-pressed: var(--orange-800);
133133

134134
--body: var(--gray-100);
135135
--body-medium: var(--gray-400);

0 commit comments

Comments
 (0)