Reorganize client shared modules
[oweals/peertube.git] / client / src / app / shared / shared-moderation / server-blocklist.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 a {
5   @include disable-default-a-behaviour;
6   display: inline-block;
7
8   &, &:hover {
9     color: pvar(--mainForegroundColor);
10   }
11
12   span {
13     font-size: 80%;
14     color: pvar(--inputPlaceholderColor);
15   }
16 }
17
18 .caption {
19   justify-content: flex-end;
20
21   input {
22     @include peertube-input-text(250px);
23     flex-grow: 1;
24   }
25 }
26
27 .unblock-button {
28   @include peertube-button;
29   @include grey-button;
30 }
31
32 .block-button {
33   @include create-button;
34 }