-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Closed
Labels
Description
These sizes are great, but useless if we need them to be responsive. Would be great if there was a Bullma-way to make them responsive. Right now I did it myself, but it feels hacky.
Docs:
<a class="button is-small">Small</a> <a class="button">Normal</a> <a class="button is-medium">Medium</a> <a class="button is-large">Large</a>
Hacky code: (not a suggestion)
@media screen and (max-width: $breakpoint_6)
.button
font-size: 15px !important
&.is-small
font-size: 13px !important
&.is-medium
font-size: 18px !important
&.is-large
font-size: 22px !important
@media screen and (max-width: $breakpoint_5)
.button
font-size: 14px !important
&.is-small
font-size: 12px !important
&.is-medium
font-size: 17px !important
&.is-large
font-size: 20px !important
@media screen and (max-width: $breakpoint_4)
.button
font-size: 13px !important
&.is-small
font-size: 11px !important
&.is-medium
font-size: 16px !important
&.is-large
font-size: 18px !important
Reactions are currently unavailable