| 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 | .setting-description { |
| 9 | padding-bottom: var(--halfpad); |
| 10 | font-size: 13px; |
| 11 | } |
| 12 | |
| 13 | .multiple-settings { |
| 14 | display: flex; |
| 15 | flex-direction: column; |
| 16 | flex-wrap: wrap; |
| 17 | max-width: 500px; |
| 18 | gap: var(--pad); |
| 19 | } |
| 20 | |
| 21 | .setting-inline-dropdown { |
| 22 | display: flex; |
| 23 | flex-direction: row; |
| 24 | gap: var(--pad); |
| 25 | align-items: center; |
| 26 | } |
| 27 | |
| 28 | .zoom-setting { |
| 29 | display: flex; |
| 30 | align-items: center; |
| 31 | gap: var(--halfpad); |
| 32 | } |
| 33 | |
| 34 | .zoom-setting label { |
| 35 | font-size: 80%; |
| 36 | } |
| 37 | |