signal-desktop/stylesheets/components/SearchResultsLoadingFakeHeader.scss

19 lines
389 B
SCSS
Raw Normal View History

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
2024-11-15 23:09:31 +00:00
@use '../mixins';
// These styles should match the "real" header.
.module-SearchResultsLoadingFakeHeader {
display: flex;
flex-direction: column;
justify-content: center;
padding: 14px;
&::before {
content: '';
display: block;
2024-11-15 23:09:31 +00:00
@include mixins.search-results-loading-box(25%);
}
}