main
scss 51 lines 902 Bytes
Raw
1 .vue-md-it-wrapper {
2 img {
3 max-width: 100%;
4 width: 100%;
5 border: 1px solid var(--border-color);
6 border-radius: var(--border-radius);
7 }
8
9 table {
10 --cell-padding: 8px 12px;
11
12 width: fit-content;
13 max-width: 100%;
14 border: 1px solid var(--border-color);
15 border-radius: var(--border-radius);
16 text-align: left;
17 font-variant-numeric: tabular-nums;
18 border-collapse: separate;
19 border-spacing: 0;
20 overflow-x: scroll;
21 display: block;
22 white-space: nowrap;
23
24 thead {
25 tr {
26 th {
27 white-space: nowrap;
28 text-align: left;
29 padding: var(--cell-padding);
30 background-color: var(--bg-secondary-color);
31 }
32 }
33 }
34
35 tbody {
36 tr {
37 td {
38 padding: var(--cell-padding);
39 background-color: var(--bg-default-color);
40 border-bottom: 1px solid var(--border-color);
41 }
42
43 &:last-child {
44 td {
45 border-bottom: 0;
46 }
47 }
48 }
49 }
50 }
51 }