Support audio upload in client
[oweals/peertube.git] / client / src / app / shared / buttons / button.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .action-button {
5   @include peertube-button-link;
6   @include button-with-icon(21px, 0, -2px);
7 }
8
9 // In a table, try to minimize the space taken by this button
10 @media screen and (max-width: 1400px) {
11   :host-context(td) {
12     .action-button {
13       padding: 0 13px;
14     }
15
16     .button-label {
17       display: none;
18     }
19   }
20 }