feat: keep timeline at 600px for md and lg screens

This commit is contained in:
patak 2023-01-03 14:48:13 +01:00
parent 61a141ae69
commit f8703fc1c1
6 changed files with 17 additions and 17 deletions

View file

@ -7,7 +7,7 @@ const disabledVisual = computed(() => isMastoInitialised.value && !currentUser.v
<button
flex="~ gap2 center"
w-9 h-9 py2
lg="w-auto h-auto py-4"
xl="w-auto h-auto py-4"
rounded-full
cursor-pointer disabled:pointer-events-none
text-primary font-bold
@ -17,6 +17,6 @@ const disabledVisual = computed(() => isMastoInitialised.value && !currentUser.v
@click="openPublishDialog()"
>
<div i-ri:quill-pen-line />
<span hidden lg:block>{{ $t('action.compose') }}</span>
<span hidden xl:block>{{ $t('action.compose') }}</span>
</button>
</template>