@abumble/design-system 0.0.41 → 0.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/styles.css +7 -5
package/package.json
CHANGED
package/src/styles.css
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
@import 'tailwindcss';
|
|
2
2
|
@import 'tw-animate-css';
|
|
3
|
+
@import './themes/linen.css';
|
|
4
|
+
@import './themes/steel.css';
|
|
3
5
|
|
|
4
6
|
@tailwind base;
|
|
5
7
|
@tailwind components;
|
|
@@ -119,24 +121,24 @@
|
|
|
119
121
|
}
|
|
120
122
|
|
|
121
123
|
.sub-heading {
|
|
122
|
-
@apply mt-8 mb-1 font-semibold text-
|
|
124
|
+
@apply mt-8 mb-1 font-semibold text-foreground;
|
|
123
125
|
}
|
|
124
126
|
|
|
125
127
|
.p-text {
|
|
126
|
-
@apply leading-relaxed text-
|
|
128
|
+
@apply leading-relaxed text-foreground;
|
|
127
129
|
}
|
|
128
130
|
|
|
129
131
|
.text-link {
|
|
130
|
-
@apply text-
|
|
132
|
+
@apply text-primary hover:text-primary/80 visited:text-primary/60;
|
|
131
133
|
}
|
|
132
134
|
|
|
133
135
|
.nav-link {
|
|
134
|
-
@apply relative block px-3 py-2 transition text-
|
|
136
|
+
@apply relative block px-3 py-2 transition text-muted-foreground hover:text-foreground;
|
|
135
137
|
}
|
|
136
138
|
|
|
137
139
|
.nav-link:hover,
|
|
138
140
|
.nav-link-active {
|
|
139
|
-
@apply text-
|
|
141
|
+
@apply text-foreground transition duration-200;
|
|
140
142
|
}
|
|
141
143
|
|
|
142
144
|
body {
|