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
| @import 'c/lexCssUtility';
|
| lightning-input {
| --lwc-colorBorderInput : #000000;
| }
|
| lightning-combobox{
| --lwc-colorBorderInput : #000000;
| }
|
| /* table,tbody {
| display: block;
| height: 150px;
| border: 0;
| border-spacing: 0;
| border-collapse: collapse;
| cursor: default;
| }
|
| tbody {
| overflow-y: scroll;
| }
|
| table thead,
| tbody tr {
| display: table;
| width: 100%;
| table-layout: fixed;
| }
|
| table thead {
| width: calc(100% - 1em)
| }
|
| table thead th {
| background: #84acde;
| width: 10%;
| }
|
| table tbody td {
| width: 10%;
| text-align: center;
| } */
|
|