Skip to content

Commit 91abff0

Browse files
committed
fix(button): Change paddings sizes on mobile
1 parent cca5b68 commit 91abff0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/_sass/components/_button.scss

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@
33
font-weight: 500;
44
line-height: 1.5;
55
text-align: center;
6-
padding: 8px 16px;
6+
padding: 8px 12px;
77
display: inline-block;
88
text-decoration: none;
99
border-radius: 4px;
1010
cursor: pointer;
1111

12+
@include breakpoint(medium up) {
13+
padding: 8px 16px;
14+
}
15+
1216
&:disabled {
1317
pointer-events: none;
1418
}

0 commit comments

Comments
 (0)