]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-library/my-history/my-history.component.scss
Added translation using Weblate (Chinese (Simplified) (zh_HANT-TW))
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-library / my-history / my-history.component.scss
CommitLineData
80bfd33c
C
1@import '_variables';
2@import '_mixins';
3
276d9652
C
4.no-history {
5 display: flex;
6 justify-content: center;
7 margin-top: 50px;
8 font-weight: $font-semibold;
9 font-size: 16px;
10}
11
12.top-buttons {
d8b34ee5 13 margin-bottom: 30px;
276d9652 14 display: flex;
62365adc 15 align-items: center;
16 flex-wrap: wrap;
276d9652 17
d8b34ee5
RK
18 #history-search {
19 @include peertube-input-text(250px);
20 }
21
276d9652
C
22 .history-switch {
23 display: flex;
276d9652
C
24
25 label {
26 margin: 0 0 0 5px;
d8b34ee5
RK
27 color: var(--greyForegroundColor);
28 font-size: 15px;
29 font-weight: $font-semibold;
276d9652
C
30 }
31 }
32
33 .delete-history {
d01b2fb9
C
34 @include peertube-button;
35 @include grey-button;
36 @include button-with-icon;
276d9652 37
d01b2fb9 38 font-size: 15px;
276d9652
C
39 }
40}
41
80bfd33c
C
42.video {
43 @include row-blocks;
44
e2409062 45 .my-video-miniature {
80bfd33c 46 flex-grow: 1;
80bfd33c
C
47 }
48}
62365adc 49
50@media screen and (max-width: $mobile-view) {
51 .top-buttons {
52 .history-switch label, .delete-history {
53 @include ellipsis;
54 }
55
56 .history-switch label {
57 width: 60%;
58 }
59
60 .delete-history {
61 margin-left: auto;
62 max-width: 32%;
63 }
64 }
65}