725 B38 lines
Blame
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.goto-time-input-row {
9 display: flex;
10 gap: var(--pad);
11 align-items: center;
12}
13
14.goto-time-content {
15 display: flex;
16 flex-direction: column;
17 min-width: 210px; /* Ensure dialog is wide enough for datetime picker */
18}
19
20.goto-time-or-divider {
21 text-align: center;
22 margin: 8px 0;
23 color: var(--text-secondary);
24}
25
26.goto-time-datetime-inputs {
27 display: flex;
28 align-items: center;
29}
30
31.goto-time-actions {
32 display: flex;
33 justify-content: space-between;
34 align-items: center;
35 margin-top: 16px;
36 gap: var(--pad);
37}
38