fix various spacing issues

This commit is contained in:
emma 2022-12-08 19:20:09 +00:00
parent 5ad0da1766
commit 87d9c1ae15
4 changed files with 5 additions and 5 deletions

View file

@ -14,6 +14,7 @@
> >
<div class="title"> <div class="title">
{{ $t('notifications.notifications') }} {{ $t('notifications.notifications') }}
&nbsp;
<span <span
v-if="unseenCount" v-if="unseenCount"
class="badge badge-notification unseen-count" class="badge badge-notification unseen-count"

View file

@ -58,9 +58,6 @@
pointer-events: none; pointer-events: none;
} }
border-radius: $fallback--btnRadius;
border-radius: var(--btnRadius, $fallback--btnRadius);
background-color: $fallback--bg; background-color: $fallback--bg;
background-color: var(--popover, $fallback--bg); background-color: var(--popover, $fallback--bg);
color: $fallback--text; color: $fallback--text;

View file

@ -5,6 +5,7 @@
<div class="panel-heading"> <div class="panel-heading">
<div class="title"> <div class="title">
{{ $t('settings.style.preview.header') }} {{ $t('settings.style.preview.header') }}
&nbsp;
<span class="badge badge-notification"> 99 </span> <span class="badge badge-notification"> 99 </span>
</div> </div>
<span class="faint"> <span class="faint">

View file

@ -99,6 +99,8 @@
.title { .title {
font-size: 1.3em; font-size: 1.3em;
display: flex;
align-items: baseline;
} }
.alert { .alert {
@ -115,8 +117,7 @@
box-sizing: border-box; box-sizing: border-box;
margin: 0; margin: 0;
min-width: 1px; min-width: 1px;
padding-top: 0; padding: 0 12px;
padding-bottom: 0;
align-self: stretch; align-self: stretch;
} }
} }