shelving 1.260.0 → 1.260.1
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/ui/style/Typography.module.css +20 -10
package/package.json
CHANGED
|
@@ -103,34 +103,44 @@
|
|
|
103
103
|
line-height: var(--leading);
|
|
104
104
|
}
|
|
105
105
|
.size-1x {
|
|
106
|
-
|
|
106
|
+
font-size: calc(var(--size-normal) * 1);
|
|
107
|
+
line-height: var(--leading);
|
|
107
108
|
}
|
|
108
109
|
.size-2x {
|
|
109
|
-
|
|
110
|
+
font-size: calc(var(--size-normal) * 2);
|
|
111
|
+
line-height: var(--leading);
|
|
110
112
|
}
|
|
111
113
|
.size-3x {
|
|
112
|
-
|
|
114
|
+
font-size: calc(var(--size-normal) * 3);
|
|
115
|
+
line-height: var(--leading);
|
|
113
116
|
}
|
|
114
117
|
.size-4x {
|
|
115
|
-
|
|
118
|
+
font-size: calc(var(--size-normal) * 4);
|
|
119
|
+
line-height: var(--leading);
|
|
116
120
|
}
|
|
117
121
|
.size-5x {
|
|
118
|
-
|
|
122
|
+
font-size: calc(var(--size-normal) * 5);
|
|
123
|
+
line-height: var(--leading);
|
|
119
124
|
}
|
|
120
125
|
.size-6x {
|
|
121
|
-
|
|
126
|
+
font-size: calc(var(--size-normal) * 6);
|
|
127
|
+
line-height: var(--leading);
|
|
122
128
|
}
|
|
123
129
|
.size-7x {
|
|
124
|
-
|
|
130
|
+
font-size: calc(var(--size-normal) * 7);
|
|
131
|
+
line-height: var(--leading);
|
|
125
132
|
}
|
|
126
133
|
.size-8x {
|
|
127
|
-
|
|
134
|
+
font-size: calc(var(--size-normal) * 8);
|
|
135
|
+
line-height: var(--leading);
|
|
128
136
|
}
|
|
129
137
|
.size-9x {
|
|
130
|
-
|
|
138
|
+
font-size: calc(var(--size-normal) * 9);
|
|
139
|
+
line-height: var(--leading);
|
|
131
140
|
}
|
|
132
141
|
.size-10x {
|
|
133
|
-
|
|
142
|
+
font-size: calc(var(--size-normal) * 10);
|
|
143
|
+
line-height: var(--leading);
|
|
134
144
|
}
|
|
135
145
|
|
|
136
146
|
/* Font-family variants. */
|