aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/ConnectionContent.scss
blob: 61d9f632f290de7eee9c5022b96e2e5aa84f9732 (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
@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;
    }
  }
}