Chocobozzz/PeerTube

View on GitHub
client/src/app/shared/shared-main/buttons/help.component.scss

Summary

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

.help-tooltip-button {
  my-global-icon {
    width: 17px;
    position: relative;
    top: -1px;

    @include apply-svg-color(pvar(--greyForegroundColor));
  }
}

::ng-deep {
  .help-popover {
    min-width: 200px;
    max-width: 300px;

    .popover-body {
      padding: 10px;
      font-size: 13px;
      border-radius: 3px;

      p {
        margin-bottom: 0;
      }

      ul {
        margin-bottom: 0;

        @include padding-left(20px);
      }
    }
  }
}