more fixes for timeline headers

This commit is contained in:
Henry Jameson 2022-04-20 19:57:01 +03:00
parent 631b8b93a4
commit 85c515b395
4 changed files with 15 additions and 9 deletions

View file

@ -106,12 +106,15 @@ export default {
.NotificationFilters { .NotificationFilters {
align-self: stretch; align-self: stretch;
.filter-trigger-button { > button {
font-size: 1.2em;
padding-left: 0.7em;
padding-right: 0.2em;
line-height: 100%; line-height: 100%;
height: 100%; height: 100%;
width: var(--__panel-heading-height-inner);
text-align: center;
svg {
font-size: 1.2em;
}
} }
} }

View file

@ -5,7 +5,7 @@
> >
<button <button
ref="trigger" ref="trigger"
class="button-unstyled -fullwidth popover-trigger-button" class="button-unstyled popover-trigger-button"
type="button" type="button"
@click="onClick" @click="onClick"
> >

View file

@ -60,7 +60,7 @@
</div> </div>
<button <button
v-else-if="!timeline.loading" v-else-if="!timeline.loading"
class="button-unstyled -link -fullwidth" class="button-unstyled -link"
@click.prevent="fetchOlderStatuses()" @click.prevent="fetchOlderStatuses()"
> >
<div class="new-status-notification text-center"> <div class="new-status-notification text-center">

View file

@ -96,11 +96,14 @@
align-self: stretch; align-self: stretch;
> button { > button {
font-size: 1.2em;
padding-left: 0.7em;
padding-right: 0.2em;
line-height: 100%; line-height: 100%;
height: 100%; height: 100%;
width: var(--__panel-heading-height-inner);
text-align: center;
svg {
font-size: 1.2em;
}
} }
} }