| 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 | .toast-container { |
| 9 | position: fixed; |
| 10 | display: flex; |
| 11 | bottom: calc(var(--pad) * 3); |
| 12 | left: 0; |
| 13 | width: 100%; |
| 14 | z-index: 1001; |
| 15 | flex-direction: column; |
| 16 | align-items: center; |
| 17 | pointer-events: none; |
| 18 | } |
| 19 | |
| 20 | .tooltip.toast { |
| 21 | position: relative; |
| 22 | margin-bottom: var(--pad); |
| 23 | cursor: default; |
| 24 | pointer-events: auto; |
| 25 | } |
| 26 | |