blob: 45cef7b9aa36cfc51e0cd866ada7107bafda71c3 (
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
25
26
27
|
@import '_variables';
@import '_mixins';
my-search-typeahead {
@include margin-right(15px);
}
.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: 600px) {
@include margin-right(10px);
padding: 0 10px;
.icon.icon-upload {
@include margin-right(0);
}
.publish-button-label {
display: none;
}
}
}
|