/
githubmirror
/
gitness
Обзор
Документация
Войти
/
githubmirror
/
gitness
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
web/src/components/LoadingSpinner/LoadingSpinner.module.scss
43 строки
1 KB
Tan Nhu
Optimize rendering when updating / deleting a comment (#1032)
09 фев 2024, 23:37
09 фев 2024, 23:37
9d8bf25
Код
Авторство
О чём код?
/* * Copyright 2023 Harness, Inc. * * 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. */ .main { position: absolute; width: 100%; top: calc(50vh - 180px); display: flex; align-items: center; justify-content: center; z-index: 9999; &.withBorder > div { background: var(--white) !important; padding: 30px 50px !important; border-radius: 5px; box-shadow: 0px 0px 1px rgba(40, 41, 61, 0.08), 0px 0.5px 2px rgba(96, 97, 112, 0.16), 0px 0px 1px rgba(40, 41, 61, 0.08), 0px 0.5px 2px rgba(96, 97, 112, 0.16); } .layout { align-items: center; .text { max-width: 30vw; } } }