@@ -45,9 +45,9 @@ export function Stats(props: StatsProps) {
45
45
< thead >
46
46
< tr >
47
47
< th > Feature</ th >
48
- < th > Added</ th >
49
- < th > Modified</ th >
50
- < th > Deleted</ th >
48
+ < th > < span class = "feature--label feature--label__add" > Added</ span > </ th >
49
+ < th > < span class = "feature--label feature--label__mod" > Modified</ span > </ th >
50
+ < th > < span class = "feature--label feature--label__del" > Deleted</ span > </ th >
51
51
</ tr >
52
52
</ thead >
53
53
< tbody >
@@ -145,19 +145,19 @@ export function Stats(props: StatsProps) {
145
145
< span class = "bar-chart__bar--label" > Buildings</ span >
146
146
< div class = "bar-chart__bar--value" >
147
147
< span
148
- class = "bar-chart__bar--val1 "
148
+ class = "bar-chart__bar--add "
149
149
style = { `flex-basis: ${
150
150
( stats . buildingsAdded / stats . buildings ) * 100
151
151
} %`}
152
152
/>
153
153
< span
154
- class = "bar-chart__bar--val2 "
154
+ class = "bar-chart__bar--mod "
155
155
style = { `flex-basis: ${
156
156
( stats . buildingsModified / stats . buildings ) * 100
157
157
} %`}
158
158
/>
159
159
< span
160
- class = "bar-chart__bar--val3 "
160
+ class = "bar-chart__bar--del "
161
161
style = { `flex-basis: ${
162
162
( stats . buildingsDeleted / stats . buildings ) * 100
163
163
} %`}
@@ -168,19 +168,19 @@ export function Stats(props: StatsProps) {
168
168
< span class = "bar-chart__bar--label" > Highways</ span >
169
169
< div class = "bar-chart__bar--value" >
170
170
< span
171
- class = "bar-chart__bar--val1 "
171
+ class = "bar-chart__bar--add "
172
172
style = { `flex-basis: ${
173
173
( stats . highwaysAdded / stats . highways ) * 100
174
174
} %`}
175
175
/>
176
176
< span
177
- class = "bar-chart__bar--val2 "
177
+ class = "bar-chart__bar--mod "
178
178
style = { `flex-basis: ${
179
179
( stats . highwaysModified / stats . highways ) * 100
180
180
} %`}
181
181
/>
182
182
< span
183
- class = "bar-chart__bar--val3 "
183
+ class = "bar-chart__bar--del "
184
184
style = { `flex-basis: ${
185
185
( stats . highwaysDeleted / stats . highways ) * 100
186
186
} %`}
@@ -191,17 +191,17 @@ export function Stats(props: StatsProps) {
191
191
< span class = "bar-chart__bar--label" > Other</ span >
192
192
< div class = "bar-chart__bar--value" >
193
193
< span
194
- class = "bar-chart__bar--val1 "
194
+ class = "bar-chart__bar--add "
195
195
style = { `flex-basis: ${ ( stats . otherAdded / stats . other ) * 100 } %` }
196
196
/>
197
197
< span
198
- class = "bar-chart__bar--val2 "
198
+ class = "bar-chart__bar--mod "
199
199
style = { `flex-basis: ${
200
200
( stats . otherModified / stats . other ) * 100
201
201
} %`}
202
202
/>
203
203
< span
204
- class = "bar-chart__bar--val3 "
204
+ class = "bar-chart__bar--del "
205
205
style = { `flex-basis: ${
206
206
( stats . otherDeleted / stats . other ) * 100
207
207
} %`}
@@ -213,9 +213,9 @@ export function Stats(props: StatsProps) {
213
213
< thead >
214
214
< tr >
215
215
< th > Feature</ th >
216
- < th > Added</ th >
217
- < th > Modified</ th >
218
- < th > Deleted</ th >
216
+ < th > < span class = "feature--label feature--label__add" > Added</ span > </ th >
217
+ < th > < span class = "feature--label feature--label__mod" > Modified</ span > </ th >
218
+ < th > < span class = "feature--label feature--label__del" > Deleted</ span > </ th >
219
219
</ tr >
220
220
</ thead >
221
221
< tbody >
0 commit comments