1 .Box {
2 display: table;
3 table-layout: fixed;
4 width: 100%;
5 margin-bottom: 16px;
6 }
7
8 .Box_1 {
9 position: relative;
10 border-radius: 6px;
11 border-style: solid;
12 border-width: 1px;
13 border-color: #d0d7de;
14 }
15
16 .Box_2 {
17 margin: 0;
18 padding: 16px;
19 overflow-x: auto;
20 }
21
22 .Box_3 {
23 margin: 0;
24 }
25
26 .Button {
27 position: absolute;
28 top: 0;
29 right: 0;
30 }
31
32 .Button:focus-visible {
33 outline: 2px solid;
34 outline-color: -webkit-focus-ring-color;
35 outline-offset: 1px;
36 }
37
38 .Text {
39 font-family:
40 ui-monospace,
41 SFMono-Regular,
42 SF Mono,
43 Menlo,
44 Consolas,
45 Liberation Mono,
46 monospace;
47 font-size: 14px;
48 }
49
50 .ClipboardCopy {
51 position: absolute;
52 top: -1px;
53 right: -1px;
54 border-radius: 0;
55 border-style: solid;
56 border-width: 1px;
57 border-color: #d0d7de;
58 border-top-right-radius: 6px;
59 border-bottom-left-radius: 6px;
60 }