blob: 074d9756f8f14828029f18cd66ff048da047327e (
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
|
@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-all;
}
.from-client {
color: #d4e0fc;
}
.from-server {
color: $color-secondary-4;
&:hover {
background-color: $color-primary-3;
border-top: 1px solid $color-primary-1;
}
}
}
|