]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/plugins/shared/plugin-list.component.scss
87a709b00b6911a75fa5ba984ab2363d3f8a28d7
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / plugins / shared / plugin-list.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .plugin {
5 margin: 15px 0;
6 background-color: var(--submenuColor);
7 }
8
9 .first-row {
10 margin-bottom: 10px;
11
12 .plugin-name {
13 font-size: 16px;
14 margin-right: 10px;
15 font-weight: $font-semibold;
16 }
17
18 .plugin-version {
19 opacity: 0.6;
20 }
21 }
22
23 .second-row {
24 display: grid;
25 grid-template-columns: 1fr auto;
26 align-items: center;
27 justify-content: space-between;
28
29 .description {
30 opacity: 0.8
31 }
32
33 .buttons {
34 margin-left: 10px;
35 > *:not(:last-child) {
36 margin-right: 10px;
37 }
38 }
39 }
40
41 .action-button {
42 @include peertube-button-link;
43 @include button-with-icon(21px, 0, -2px);
44 }