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
| /* myCustomCard.css */
| .custom-title {
| background-color: #f0f0f0; /* 设置所需的背景色 */
| font-size: 18px; /* 根据需要进行调整 */
| padding: 5px 10px; /* 根据需要进行调整 */
| }
| .slds-card__header-title{
| background-color: var(--slds-g-color-neutral-base-95, var(--lwc-colorBackground,rgb(243, 243, 243)));
| display: flex;
| align-items: center;
| font-size: 0.875rem;
| line-height: 1.875rem;
| border: 1px;
| border-radius: 0.25rem;
| font-weight: inherit;
| margin: 0;
| padding: 0;
| margin-block-start: 1em;
| margin-block-end: 1em;
| }
| /* 自定义高度 */
| .my-input-field .slds-checkbox,
| .my-input-field .slds-input {
| height: 2rem; /* 根据需要设置合适的高度 */
| }
|
|