File size: 1,135 Bytes
271613e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@use '../style/variable' as *;
@use '../style/mixin' as *;

#info {
  @include overflow-auto(y);
  li {
    margin: 10px;
    border: 1px solid var(--border);
    .title,
    .content {
      padding: $padding;
    }
    .title {
      position: relative;
      padding-bottom: 0;
      color: var(--accent);
      .icon-copy {
        position: absolute;
        right: 10px;
        top: 14px;
        color: var(--primary);
        cursor: pointer;
        transition: color $anim-duration;
        &:active {
          color: var(--accent);
        }
      }
    }
    .content {
      margin: 0;
      user-select: text;
      color: var(--foreground);
      font-size: $font-size-s;
      word-break: break-all;
      table {
        width: 100%;
        border-collapse: collapse;
        th,
        td {
          border: 1px solid var(--border);
          padding: 10px;
        }
      }
      * {
        user-select: text;
      }
      a {
        color: var(--link-color);
      }
    }
    .device-key,
    .system-key {
      width: 100px;
    }
  }
}

.safe-area #info {
  @include safe-area(padding-bottom, 10px);
}