blob: 5a170663ec86ea66e0d9bc63ea665a7c3f42edc1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
@import '../colors.scss';
.connection-content {
background-color: $color-primary-3;
height: 100%;
overflow: fixed;
pre {
background-color: $color-primary-0;
padding: 10px 20px;
word-break: break-word;
max-width: 100%;
white-space: pre-wrap;
height: 95%;
}
.from-client {
color: #d4e0fc;
}
.from-server {
color: $color-secondary-4;
&:hover {
background-color: $color-primary-3;
border-top: 1px solid $color-primary-1;
}
}
}
|