Skip to content

Commit 998fc7d

Browse files
Updated component to version 2.3.2
1 parent 0264c7e commit 998fc7d

5 files changed

+31
-30
lines changed

RELEASE-NOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### Version 2.3.2 - June 18, 2018
2+
3+
- **Statistics** - Fix issue where grouped statistics would have excess bottom margin if they are `:last-child`
4+
15
### Version 2.2.0 - June 26, 2016
26

37
- **Statistic** - statistic receives incorrect size when using `tiny` `large` etc inside a statistic group [#3116](https://github.com/Semantic-Org/Semantic-UI/issues/3116)

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
"framework"
1616
],
1717
"license": "MIT",
18-
"version": "2.3.1"
18+
"version": "2.3.2"
1919
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "semantic-ui-statistic",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"title": "Semantic UI - Statistic",
55
"description": "Single component release of statistic",
66
"homepage": "http://www.semantic-ui.com",

statistic.css

+23-26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.3.1 - Statistic
2+
* # Semantic UI 2.3.2 - Statistic
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*
@@ -64,14 +64,14 @@
6464
-webkit-box-direction: normal;
6565
-ms-flex-direction: column;
6666
flex-direction: column;
67-
margin: 0em 1.5em 2em;
67+
margin: 0em 1.5em 1em;
6868
max-width: auto;
6969
}
7070
.ui.statistics {
7171
display: -webkit-box;
7272
display: -ms-flexbox;
7373
display: flex;
74-
margin: 1em -1.5em -2em;
74+
margin: 1em -1.5em -1em;
7575
}
7676

7777
/* Clearing */
@@ -86,9 +86,6 @@
8686
.ui.statistics:first-child {
8787
margin-top: 0em;
8888
}
89-
.ui.statistics:last-child {
90-
margin-bottom: 0em;
91-
}
9289

9390

9491
/*******************************
@@ -191,74 +188,74 @@
191188
---------------*/
192189

193190
.ui.ten.statistics {
194-
margin: 0em 0em -2em;
191+
margin: 0em 0em -1em;
195192
}
196193
.ui.ten.statistics .statistic {
197194
min-width: 10%;
198-
margin: 0em 0em 2em;
195+
margin: 0em 0em 1em;
199196
}
200197
.ui.nine.statistics {
201-
margin: 0em 0em -2em;
198+
margin: 0em 0em -1em;
202199
}
203200
.ui.nine.statistics .statistic {
204201
min-width: 11.11111111%;
205-
margin: 0em 0em 2em;
202+
margin: 0em 0em 1em;
206203
}
207204
.ui.eight.statistics {
208-
margin: 0em 0em -2em;
205+
margin: 0em 0em -1em;
209206
}
210207
.ui.eight.statistics .statistic {
211208
min-width: 12.5%;
212-
margin: 0em 0em 2em;
209+
margin: 0em 0em 1em;
213210
}
214211
.ui.seven.statistics {
215-
margin: 0em 0em -2em;
212+
margin: 0em 0em -1em;
216213
}
217214
.ui.seven.statistics .statistic {
218215
min-width: 14.28571429%;
219-
margin: 0em 0em 2em;
216+
margin: 0em 0em 1em;
220217
}
221218
.ui.six.statistics {
222-
margin: 0em 0em -2em;
219+
margin: 0em 0em -1em;
223220
}
224221
.ui.six.statistics .statistic {
225222
min-width: 16.66666667%;
226-
margin: 0em 0em 2em;
223+
margin: 0em 0em 1em;
227224
}
228225
.ui.five.statistics {
229-
margin: 0em 0em -2em;
226+
margin: 0em 0em -1em;
230227
}
231228
.ui.five.statistics .statistic {
232229
min-width: 20%;
233-
margin: 0em 0em 2em;
230+
margin: 0em 0em 1em;
234231
}
235232
.ui.four.statistics {
236-
margin: 0em 0em -2em;
233+
margin: 0em 0em -1em;
237234
}
238235
.ui.four.statistics .statistic {
239236
min-width: 25%;
240-
margin: 0em 0em 2em;
237+
margin: 0em 0em 1em;
241238
}
242239
.ui.three.statistics {
243-
margin: 0em 0em -2em;
240+
margin: 0em 0em -1em;
244241
}
245242
.ui.three.statistics .statistic {
246243
min-width: 33.33333333%;
247-
margin: 0em 0em 2em;
244+
margin: 0em 0em 1em;
248245
}
249246
.ui.two.statistics {
250-
margin: 0em 0em -2em;
247+
margin: 0em 0em -1em;
251248
}
252249
.ui.two.statistics .statistic {
253250
min-width: 50%;
254-
margin: 0em 0em 2em;
251+
margin: 0em 0em 1em;
255252
}
256253
.ui.one.statistics {
257-
margin: 0em 0em -2em;
254+
margin: 0em 0em -1em;
258255
}
259256
.ui.one.statistics .statistic {
260257
min-width: 100%;
261-
margin: 0em 0em 2em;
258+
margin: 0em 0em 1em;
262259
}
263260

264261
/*--------------

0 commit comments

Comments
 (0)