Skip to content

Commit 96e2cb1

Browse files
authored
Merge pull request #34 from CodeBrauer/master
Fixing height of outlined button (fixes #33)
2 parents db1aac5 + 82dbe97 commit 96e2cb1

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

dist/wing.css

+6-4
Original file line numberDiff line numberDiff line change
@@ -277,11 +277,15 @@ h6 {
277277

278278
/* Button Outline */
279279

280+
.btn-outline, .btn-outline-inverted {
281+
padding: 9px 9px;
282+
background: transparent;
283+
transition: all 0.5s ease;
284+
}
285+
280286
.btn-outline {
281287
border: 3px solid #fff;
282288
color: #fff;
283-
background: transparent;
284-
transition: all 0.5s ease;
285289
}
286290

287291
.btn-outline:hover,
@@ -293,8 +297,6 @@ h6 {
293297
.btn-outline-inverted {
294298
border: 3px solid #000;
295299
color: #000;
296-
background: transparent;
297-
transition: all 0.5s ease;
298300
}
299301

300302
.btn-outline-inverted:hover,

dist/wing.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/buttons.css

+6-4
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,15 @@
5050

5151
/* Button Outline */
5252

53+
.btn-outline, .btn-outline-inverted {
54+
padding: 9px 9px;
55+
background: transparent;
56+
transition: all 0.5s ease;
57+
}
58+
5359
.btn-outline {
5460
border: 3px solid #fff;
5561
color: #fff;
56-
background: transparent;
57-
transition: all 0.5s ease;
5862
}
5963

6064
.btn-outline:hover,
@@ -66,8 +70,6 @@
6670
.btn-outline-inverted {
6771
border: 3px solid #000;
6872
color: #000;
69-
background: transparent;
70-
transition: all 0.5s ease;
7173
}
7274

7375
.btn-outline-inverted:hover,

0 commit comments

Comments
 (0)