@stamcat/craftsman 0.0.33 → 0.0.34
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
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
@use "./components/button";
|
|
7
7
|
@use "./components/input";
|
|
8
8
|
@use "./components/select";
|
|
9
|
+
@use "../utilities/functions" as u;
|
|
9
10
|
|
|
10
11
|
@layer craftsman-base, craftsman-component, craftsman-theme;
|
|
11
12
|
|
|
@@ -94,34 +95,34 @@
|
|
|
94
95
|
}
|
|
95
96
|
// TODO: These h* declarations need to be moved somewhere not-terrible
|
|
96
97
|
h1 {
|
|
97
|
-
@include h1;
|
|
98
|
+
@include t.h1;
|
|
98
99
|
}
|
|
99
100
|
|
|
100
101
|
h2 {
|
|
101
|
-
@include h2;
|
|
102
|
+
@include t.h2;
|
|
102
103
|
}
|
|
103
104
|
|
|
104
105
|
h3 {
|
|
105
|
-
@include h3;
|
|
106
|
+
@include t.h3;
|
|
106
107
|
}
|
|
107
108
|
|
|
108
109
|
h4 {
|
|
109
|
-
@include h4;
|
|
110
|
+
@include t.h4;
|
|
110
111
|
}
|
|
111
112
|
|
|
112
113
|
h5 {
|
|
113
|
-
@include h5;
|
|
114
|
+
@include t.h5;
|
|
114
115
|
}
|
|
115
116
|
|
|
116
117
|
h6 {
|
|
117
|
-
@include h6;
|
|
118
|
+
@include t.h6;
|
|
118
119
|
}
|
|
119
120
|
|
|
120
121
|
p {
|
|
121
|
-
@include p;
|
|
122
|
+
@include t.p;
|
|
122
123
|
}
|
|
123
124
|
small {
|
|
124
|
-
@include small;
|
|
125
|
+
@include t.small;
|
|
125
126
|
}
|
|
126
127
|
|
|
127
128
|
@include u.breakpoint(mobileMax) {
|