blob: a1b4afd1567a2758aba5af5ad6cc2a2972d1148e (
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: auto;
pre {
background-color: $color-primary-0;
padding: 10px 20px;
word-break: break-word;
max-width: 100%;
white-space: pre-wrap;
height: 100%;
}
.from-client {
color: #d4e0fc;
}
.from-server {
color: $color-secondary-4;
&:hover {
background-color: $color-primary-3;
border-top: 1px solid $color-primary-1;
}
}
}
|