mirror of
https://github.com/seriousm4x/UpSnap.git
synced 2026-07-28 00:12:56 -04:00
fix: order button joint-item border
This commit is contained in:
2579
frontend/pnpm-lock.yaml
generated
2579
frontend/pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,4 @@
|
||||
// This file was auto-generated by 'typesafe-i18n'. Any manual changes will be overwritten.
|
||||
|
||||
|
||||
import { initI18nSvelte } from 'typesafe-i18n/svelte';
|
||||
import type { Formatters, Locales, TranslationFunctions, Translations } from './i18n-types';
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,4 @@
|
||||
// This file was auto-generated by 'typesafe-i18n'. Any manual changes will be overwritten.
|
||||
|
||||
|
||||
import { initFormatters } from './formatters';
|
||||
import type { Locales, Translations } from './i18n-types';
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
// This file was auto-generated by 'typesafe-i18n'. Any manual changes will be overwritten.
|
||||
|
||||
|
||||
import { initFormatters } from './formatters';
|
||||
import type { Locales, Translations } from './i18n-types';
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
// This file was auto-generated by 'typesafe-i18n'. Any manual changes will be overwritten.
|
||||
|
||||
|
||||
import {
|
||||
i18n as initI18n,
|
||||
|
||||
@@ -130,18 +130,17 @@
|
||||
value="ip"
|
||||
/>
|
||||
{/if}
|
||||
<div class="tooltip join-item" data-tip={$LL.home.order_tooltip()}>
|
||||
<button
|
||||
class="btn {orderExpanded ? '' : 'rounded-field'}"
|
||||
on:click={() => (orderExpanded = !orderExpanded)}
|
||||
>
|
||||
{#if orderExpanded}
|
||||
<Fa icon={faChevronCircleRight} size="lg" />
|
||||
{:else}
|
||||
<Fa icon={faChevronCircleLeft} size="lg" />
|
||||
{/if}
|
||||
</button>
|
||||
</div>
|
||||
<button
|
||||
class="btn join-item tooltip {orderExpanded ? '' : 'rounded-field'}"
|
||||
data-tip={$LL.home.order_tooltip()}
|
||||
on:click={() => (orderExpanded = !orderExpanded)}
|
||||
>
|
||||
{#if orderExpanded}
|
||||
<Fa icon={faChevronCircleRight} size="lg" />
|
||||
{:else}
|
||||
<Fa icon={faChevronCircleLeft} size="lg" />
|
||||
{/if}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{#if orderByGroups}
|
||||
|
||||
Reference in New Issue
Block a user