blob: 89f792b65af4e0e2e0a681bfa2099cab5ab61ef5 [file] [edit]
// Copyright (C) 2023 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
@import "../assets/theme";
.pf-empty-state {
display: flex;
flex-direction: column;
align-items: center;
padding: 10px;
user-select: none;
margin: auto;
justify-content: center;
color: var(--pf-color-text-muted);
&__main-icon {
font-size: 5em; // Size of the icon is relative to the font size.
margin-bottom: 12px;
}
// Limit width to the size of the container and use no wrap & elipsis to
// stop the size getting out of control.
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
&--fill-height {
height: 100%;
}
&__title {
text-align: center;
font-weight: 500;
margin-bottom: 8px;
}
&__content {
text-align: center;
}
}