aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+video-channels/video-channels.component.scss
blob: 22f21dcc6eee9e0ba2e536e233a20f06028c981a (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Bootstrap grid utilities require functions, variables and mixins
@import 'node_modules/bootstrap/scss/functions';
@import 'node_modules/bootstrap/scss/variables';
@import 'node_modules/bootstrap/scss/mixins';
@import 'node_modules/bootstrap/scss/grid';

@import '_variables';
@import '_mixins';

.sub-menu {
  @include sub-menu-with-actor;

  .actor, .actor-info {
    width: 100%;
  }

  .actor-info {
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto / 1fr auto;
    grid-template-areas: "name buttons" "lower buttons";

    @include media-breakpoint-down(lg) {
      grid-template-areas: "name name" "lower buttons";
    }
  }

  .actor-names {
    grid-area: name;
  }

  .actor-name {
    flex-grow: 1;

    .copy-button {
      border: none;
      padding: 5px;
      margin-top: -2px;
    }
  }
}

.margin-content {
  // margin-content is required, but child views have their own margins
  // that match views outside the scope of accounts, so we only align
  // them with the margins of .sub-menu when required.
  margin: 0;
}

.right-buttons {
  display: flex;
  height: max-content;
  margin-left: auto;
  margin-top: 10px;

  grid-row: buttons-start / span buttons-end;
  grid-column: buttons-start;

  @include media-breakpoint-down(lg) {
    flex-flow: column-reverse;

    a {
      margin-top: 0.25rem;
      margin-right: 0 !important;
    }
  }

  a {
    @include peertube-button-outline;
    line-height: 1.8;
  }

  my-subscribe-button {
    height: min-content;
  }
}

@media screen and (max-width: $mobile-view) {
  .sub-menu {
    .actor {
      flex-direction: column;

      .actor-info .actor-names {
        flex-direction: column;
        align-items: normal;
      }
    }
  }
}