| |
|
|
| .config-section { |
| background: #fff; |
| border: 1px solid transparent; |
| border-radius: 12px; |
| padding: 16px; |
| display: flex; |
| flex-direction: column; |
| gap: 12px; |
| transition: border-color 0.2s ease; |
| } |
|
|
| .config-section:hover { |
| border-color: #000; |
| } |
|
|
| .config-section-title { |
| font-size: 14px; |
| font-weight: 600; |
| color: var(--accents-7); |
| } |
|
|
| .config-grid { |
| display: grid; |
| gap: 14px; |
| } |
|
|
| .config-field { |
| padding-top: 2px; |
| position: relative; |
| } |
|
|
| .config-field-title { |
| font-size: 13px; |
| font-weight: 600; |
| color: var(--accents-7); |
| } |
|
|
| .config-field-desc { |
| font-size: 12px; |
| color: var(--accents-4); |
| line-height: 1.5; |
| } |
|
|
| .config-field-input { |
| margin-top: 6px; |
| } |
|
|
| .config-field.has-action { |
| padding-right: 44px; |
| } |
|
|
| .config-field-action { |
| position: absolute; |
| right: 0; |
| top: 50%; |
| transform: translateY(-50%); |
| } |
|
|