Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/atrium-telegram/app/components/Navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
variant="solid"
color="secondary"
size="xl"
class="transition-all duration-200 ease-in-out motion-preset-slide-down motion-duration-200"
class="transition-all duration-200 ease-in-out motion-preset-slide-up motion-duration-1000"
icon="i-lucide-plus"
:ui="{
base: 'size-12 font-bold rounded-full',
Expand Down
4 changes: 2 additions & 2 deletions apps/atrium-telegram/app/components/StaffBlock.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="max-w-full overflow-x-scroll overflow-y-hidden snap-x hide-scroll">
<div class="w-max flex flex-row flex-wrap gap-1">
<div class="w-max flex flex-row flex-wrap gap-2">
<div
v-for="user in allUsers"
:key="user.id"
Expand All @@ -10,7 +10,7 @@
<div class="relative">
<UAvatar
:src="user?.avatarUrl ?? undefined"
class="size-14 border-2 border-default"
class="size-16 border-2 border-default"
:class="[
user.isOnline && 'border-primary',
]"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
</h3>
</div>
<p class="text-sm/4">
{{ pluralizationRu(kitchensOnline, ['Кухня', 'Кухни', 'Кухонь']) }} сейчас {{ pluralizationRu(kitchensOnline, ['работает', 'работают', 'работают']) }}
{{ pluralizationRu(kitchensOnline, ['Кухня', 'Кухни', 'Кухонь']) }} сейчас {{ pluralizationRu(kitchensOnline, ['открыта', 'открыты', 'открыто']) }}
</p>
</div>
</Section>
Expand Down