| 1 | /** |
| 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. |
| 3 | * |
| 4 | * This source code is licensed under the MIT license found in the |
| 5 | * LICENSE file in the root directory of this source tree. |
| 6 | */ |
| 7 | |
| 8 | .download-commits-input-row { |
| 9 | min-width: 400px; |
| 10 | display: flex; |
| 11 | gap: var(--pad); |
| 12 | align-items: center; |
| 13 | } |
| 14 | |
| 15 | .download-commits-input-row vscode-text-field { |
| 16 | flex-grow: 1; |
| 17 | } |
| 18 | |
| 19 | .download-commits-content { |
| 20 | display: flex; |
| 21 | flex-direction: column; |
| 22 | gap: var(--pad); |
| 23 | } |
| 24 | |
| 25 | /* Add padding to the top of the expander contents for better spacing */ |
| 26 | .download-commits-expander .collapsable-contents { |
| 27 | padding-top: var(--pad); |
| 28 | } |
| 29 | |