pleroma/app/styles/components/buttons.scss

25 lines
451 B
SCSS
Raw Normal View History

2020-03-27 13:59:38 -07:00
button,
a.button {
2020-04-21 17:44:55 -07:00
&.standard {
2020-03-27 13:59:38 -07:00
2020-04-21 17:44:55 -07:00
// NOTE - will define the larger standard buttons here and apply class where used.
2020-03-27 13:59:38 -07:00
2020-04-21 17:44:55 -07:00
&-small {
@include font-size(11);
@include line-height(11);
@include font-weight(bold);
2020-05-28 17:58:37 -07:00
height: 20px;
padding: 5px 15px;
border: 0;
border-radius: 4px;
2020-04-21 17:44:55 -07:00
text-transform: uppercase;
2020-05-28 17:58:37 -07:00
color: #fff;
2020-06-02 15:42:09 -07:00
background: #607cf5;
2020-04-21 17:44:55 -07:00
}
}
2020-03-27 13:59:38 -07:00
2020-04-21 17:44:55 -07:00
i.fa {
margin-right: 0.6em;
}
}