/
githubmirror
/
gitness
Обзор
Документация
Войти
/
githubmirror
/
gitness
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
web/src/components/CommitInfo/CommitInfo.module.scss
52 строки
1 KB
Tan Nhu
Fix width in a couple of places when screen is small + clean up unused code (#1181)
04 апр 2024, 02:48
04 апр 2024, 02:48
47f4070
Код
Авторство
О чём код?
/* * 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. */ .commitInfoContainer { width: 100%; .commitTitleContainer { background-color: var(--grey-100); border: 1px solid var(--grey-200); border-top-left-radius: 5px; border-top-right-radius: 5px; } .infoContainer { border: 1px solid var(--grey-200); border-top: unset; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; } .alignContent { align-items: center !important; } } .infoText { font-size: 13px !important; font-weight: 500 !important; } .titleText { font-size: var(--font-size-normal) !important; font-weight: 600 !important; white-space: nowrap; word-break: break-all; } .btn { white-space: nowrap; flex-shrink: 0; }