| 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 | .use-modal-buttons { |
| 9 | display: flex; |
| 10 | flex-direction: row; |
| 11 | gap: var(--pad); |
| 12 | justify-content: flex-end; |
| 13 | margin: var(--pad) calc(2 * var(--pad)); |
| 14 | } |
| 15 | |
| 16 | .use-modal-buttons vscode-button { |
| 17 | min-width: 5em; |
| 18 | } |
| 19 | |
| 20 | .use-modal { |
| 21 | padding: var(--pad); |
| 22 | display: flex; |
| 23 | flex-direction: column; |
| 24 | gap: var(--pad); |
| 25 | justify-content: space-between; |
| 26 | --useModalWidth: 500px; |
| 27 | min-width: var(--useModalWidth); |
| 28 | } |
| 29 | |
| 30 | #use-modal-title { |
| 31 | font-weight: bold; |
| 32 | margin: var(--pad) 0; |
| 33 | display: flex; |
| 34 | flex-direction: row; |
| 35 | gap: var(--halfpad); |
| 36 | align-items: center; |
| 37 | } |
| 38 | |
| 39 | #use-modal-title, |
| 40 | #use-modal-message { |
| 41 | padding: 0 var(--pad); |
| 42 | } |
| 43 | |