fix issue/pr ref widget error title style

Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
This commit is contained in:
Julien Veyssier 2022-12-13 14:05:52 +01:00
Родитель b3748773a5
Коммит 47a062e238
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4141FEE162030638
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -22,7 +22,7 @@
<template>
<div class="github-issue-pr-reference">
<div v-if="isError">
<h3>
<h3 class="error-title">
<GithubIcon :size="20" class="icon" />
<span>{{ t('integration_github', 'GitHub API error') }}</span>
</h3>
@ -513,10 +513,11 @@ export default {
text-decoration: unset !important;
}
h3 {
.error-title {
display: flex;
align-items: center;
font-weight: bold;
margin-top: 0;
.icon {
margin-right: 8px;
}