mirror of https://github.com/wg-easy/wg-easy
Browse Source
* improve mobile ui * general cleanup * cleanup, improvements * fix hydration mismatchpull/2570/head
committed by
GitHub
24 changed files with 97 additions and 100 deletions
@ -1,8 +1,8 @@ |
|||||
<template> |
<template> |
||||
<ClientsCreateDialog> |
<ClientsCreateDialog> |
||||
<BaseSecondaryButton as="span"> |
<BaseSecondaryButton as="span"> |
||||
<IconsPlus class="w-4 md:mr-2" /> |
<IconsPlus class="mr-2 w-4" /> |
||||
<span class="text-sm max-md:hidden">{{ $t('client.newShort') }}</span> |
<span class="text-sm">{{ $t('client.newShort') }}</span> |
||||
</BaseSecondaryButton> |
</BaseSecondaryButton> |
||||
</ClientsCreateDialog> |
</ClientsCreateDialog> |
||||
</template> |
</template> |
||||
|
|||||
@ -1,7 +1,9 @@ |
|||||
<template> |
<template> |
||||
<div |
<div class="container mx-auto max-w-3xl"> |
||||
class="container mx-auto max-w-3xl overflow-hidden rounded-lg bg-white px-3 text-gray-700 shadow-md md:px-0 dark:bg-neutral-700 dark:text-neutral-200" |
<div |
||||
> |
class="mx-3 overflow-hidden rounded-lg bg-white text-gray-700 shadow-md dark:bg-neutral-700 dark:text-neutral-200" |
||||
<slot /> |
> |
||||
|
<slot /> |
||||
|
</div> |
||||
</div> |
</div> |
||||
</template> |
</template> |
||||
|
|||||
@ -1,5 +1,5 @@ |
|||||
<template> |
<template> |
||||
<div class="flex flex-shrink-0 items-center space-x-2"> |
<div class="flex flex-shrink-0 flex-col items-center gap-2 sm:flex-row"> |
||||
<slot /> |
<slot /> |
||||
</div> |
</div> |
||||
</template> |
</template> |
||||
|
|||||
Loading…
Reference in new issue