]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+admin/plugins/shared/plugin-list.component.scss
Fix plugin card background color with dark theme
[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: flex;
25 align-items: center;
26 justify-content: space-between;
27
28 .description {
29 opacity: 0.8
30 }
31
32 .buttons {
33 > *:not(:last-child) {
34 margin-right: 10px;
35 }
36 }
37 }
38
39 .action-button {
40 @include peertube-button-link;
41 @include button-with-icon(21px, 0, -2px);
42 }