| 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 | .empty-state { |
| 9 | width: 90%; |
| 10 | margin: 100px 0; |
| 11 | font-size: 150%; |
| 12 | font-weight: bold; |
| 13 | opacity: 0.7; |
| 14 | display: flex; |
| 15 | flex-direction: column; |
| 16 | align-items: center; |
| 17 | justify-content: center; |
| 18 | text-align: center; |
| 19 | letter-spacing: 2px; |
| 20 | } |
| 21 | |
| 22 | .empty-state-small { |
| 23 | font-size: initial; |
| 24 | width: initial; |
| 25 | letter-spacing: initial; |
| 26 | padding: 0 calc(3 * var(--pad)); |
| 27 | } |
| 28 | |
| 29 | /* Use <p> as a byline within the empty state */ |
| 30 | .empty-state p { |
| 31 | font-size: initial; |
| 32 | letter-spacing: initial; |
| 33 | } |
| 34 | |