minor fixes

This commit is contained in:
Abdenasser 2024-11-08 20:39:01 +01:00
parent adb99e9ce1
commit 8e692b013b
3 changed files with 2 additions and 17 deletions

View File

@ -1229,6 +1229,7 @@ footer {
font-size: 2.5rem;
margin-bottom: 1rem;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

View File

@ -86,6 +86,7 @@
</button>
{#if showInfo}
<!-- svelte-ignore a11y_no_static_element_interactions -->
<div class="info-panel" on:mouseleave={() => (showInfo = false)}>
<div class="info-content">
<pre class="ascii-art">{ASCII_ART}</pre>

View File

@ -221,23 +221,6 @@
box-shadow: 0 0 0 2px color-mix(in srgb, var(--blue) 25%, transparent);
}
.btn-clear {
padding: 6px 12px;
background: var(--surface0);
border: 1px solid var(--surface1);
border-radius: 6px;
color: var(--text);
font-size: 12px;
cursor: pointer;
transition: all 0.2s ease;
white-space: nowrap;
}
.btn-clear:hover {
background: var(--surface1);
border-color: var(--surface2);
}
.pagination-controls {
display: flex;
align-items: center;