Skip to content

Commit aef4256

Browse files
committed
Fixing height of outlined button
1 parent faa73b2 commit aef4256

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dist/wing.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ h6 {
278278
/* Button Outline */
279279

280280
.btn-outline {
281-
border: 3px solid #fff;
281+
box-shadow: inset 0 0 0 3px #000;
282282
color: #fff;
283283
background: transparent;
284284
transition: all 0.5s ease;
@@ -291,7 +291,7 @@ h6 {
291291
}
292292

293293
.btn-outline-inverted {
294-
border: 3px solid #000;
294+
box-shadow: inset 0 0 0 3px #000;
295295
color: #000;
296296
background: transparent;
297297
transition: all 0.5s ease;

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
/* Button Outline */
5252

5353
.btn-outline {
54-
border: 3px solid #fff;
54+
box-shadow: inset 0 0 0 3px #000;
5555
color: #fff;
5656
background: transparent;
5757
transition: all 0.5s ease;
@@ -64,7 +64,7 @@
6464
}
6565

6666
.btn-outline-inverted {
67-
border: 3px solid #000;
67+
box-shadow: inset 0 0 0 3px #000;
6868
color: #000;
6969
background: transparent;
7070
transition: all 0.5s ease;

0 commit comments

Comments
 (0)