addons/isl/src/EmptyState.cssblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318.empty-state {
b69ab319 width: 90%;
b69ab3110 margin: 100px 0;
b69ab3111 font-size: 150%;
b69ab3112 font-weight: bold;
b69ab3113 opacity: 0.7;
b69ab3114 display: flex;
b69ab3115 flex-direction: column;
b69ab3116 align-items: center;
b69ab3117 justify-content: center;
b69ab3118 text-align: center;
b69ab3119 letter-spacing: 2px;
b69ab3120}
b69ab3121
b69ab3122.empty-state-small {
b69ab3123 font-size: initial;
b69ab3124 width: initial;
b69ab3125 letter-spacing: initial;
b69ab3126 padding: 0 calc(3 * var(--pad));
b69ab3127}
b69ab3128
b69ab3129/* Use <p> as a byline within the empty state */
b69ab3130.empty-state p {
b69ab3131 font-size: initial;
b69ab3132 letter-spacing: initial;
b69ab3133}