Chocobozzz/PeerTube

View on GitHub
client/src/app/+my-library/+my-video-channels/my-video-channels.component.scss

Summary

Maintainability
Test Coverage
@use '_variables' as *;
@use '_mixins' as *;

.sub-title my-global-icon {
  position: relative;
  top: -3px;
}

input[type=text] {
  @include peertube-input-text(300px);
}

my-edit-button {
  @include margin-right(10px);
}

.video-channel {
  padding-bottom: 0;

  @include row-blocks;

  my-actor-avatar {
    @include margin-right(10px);
  }
}

.video-channel-info {
  flex-grow: 1;
}

.video-channel-names {
  width: fit-content;
  display: flex;
  align-items: baseline;
  color: pvar(--mainForegroundColor);

  @include disable-default-a-behaviour;
}

.video-channel-display-name {
  font-weight: $font-semibold;
  font-size: 18px;
}

.video-channel-name {
  font-size: 14px;
  color: pvar(--greyForegroundColor);

  @include margin-left(5px);
}

.video-channel-followers {
  color: pvar(--mainForegroundColor);
}

.video-channel-buttons {
  margin-top: 10px;
  min-width: 190px;
}

.chart-container {
  // Sync these values with the template
  width: 40vw;
  height: 100px;
}

.video-channels-header {
  margin-bottom: 30px;
}

@media screen and (max-width: $small-view) {
  .video-channels-header {
    text-align: center;
  }

  .video-channel {
    padding-bottom: 10px;

    img {
      @include margin-right(0);
    }

    .video-channel-buttons {
      align-self: center;
    }
  }

  .video-channel-info {
    padding-bottom: 10px;
    text-align: center;
  }

  .video-channel-names {
    flex-direction: column;
    align-items: center !important;
    margin: auto;
  }

  .video-channel-name {
    @include margin-left(0 !important);
  }
}

@media screen and (max-width: $mobile-view) {
  .video-channels-header {
    flex-direction: column;

    input[type=text] {
      width: 100% !important;
      margin-bottom: 12px;
    }
  }
}

@media screen and (min-width: breakpoint(lg)) {
  :host-context(.main-col:not(.expanded)) {
    .video-channel-buttons {
      float: right;
    }
  }
}

@media screen and (min-width: $small-view) {
  :host-context(.expanded) {
    .video-channel-buttons {
      float: right;
    }
  }
}