blob: ef7749ced0f03ed166a8837f433dbd4d3264193c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
@use '_variables' as *;
@use '_mixins' as *;
.publish-button {
@include peertube-button-link;
@include orange-button;
@include button-with-icon(22px, 3px, -1px);
@include margin-right(25px);
@media screen and (max-width: $mobile-view) {
@include margin-right(10px);
padding-right: 10px;
padding-left: 10px;
.icon.icon-upload {
@include margin-right(0);
}
.publish-button-label {
display: none;
}
}
}
|