plugin-list.component.scss 527 B

12345678910111213141516171819202122232425262728293031323334353637
  1. @import '_variables';
  2. @import '_mixins';
  3. .first-row {
  4. margin-bottom: 10px;
  5. .plugin-name {
  6. font-size: 16px;
  7. margin-right: 10px;
  8. font-weight: $font-semibold;
  9. }
  10. .plugin-version {
  11. opacity: 0.6;
  12. }
  13. }
  14. .second-row {
  15. display: flex;
  16. align-items: center;
  17. justify-content: space-between;
  18. .description {
  19. opacity: 0.8
  20. }
  21. .buttons {
  22. > *:not(:last-child) {
  23. margin-right: 10px;
  24. }
  25. }
  26. }
  27. .action-button {
  28. @include peertube-button-link;
  29. @include button-with-icon(21px, 0, -2px);
  30. }