]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/system/logs/logs.component.scss
Fix privacy warning position on mobile
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / system / logs / logs.component.scss
CommitLineData
2c22613c
C
1@import '_variables';
2@import '_mixins';
3
4.logs {
5 font-family: monospace;
6 font-size: 13px;
7 max-height: 500px;
8 overflow-y: auto;
9 background: rgba(0, 0, 0, 0.03);
10 padding: 20px;
11
12 .log-row {
13 margin-top: 1px;
28e0e40d 14 word-break: break-word;
2c22613c
C
15
16 &:hover {
17 background: rgba(0, 0, 0, 0.07);
18 }
19 }
20
21 .log-level {
22 font-weight: $font-semibold;
23 margin-right: 5px;
24 }
25
26 .warn {
27 color: $orange-color;
28 }
29
30 .error {
31 color: $red;
32 }
33}
34
35.header {
36 display: flex;
37 justify-content: flex-end;
38 margin-bottom: 10px;
39
40 .peertube-select-container {
41 @include peertube-select-container(150px);
42 }
43
44 my-button,
45 .peertube-select-container {
46 margin-left: 10px;
47 }
48}
49