SEO
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 30s

This commit is contained in:
2026-06-09 18:36:09 +02:00
parent 3da7424418
commit 09b44952df
23 changed files with 3652 additions and 8 deletions

View File

@@ -0,0 +1,32 @@
// Shared TUI transition mixin
@mixin tui-transition($steps: 2) {
transition: all 0.1s steps($steps, end);
}
// Box-drawing content string for borders (top/bottom frame lines)
$box-line-top: "═══════════════════";
/* Global rules - no-sprite pages hide the undertable sprite area */
.no-sprite .undertable-wrapper {
display: none;
}
// Dropdown transition keyframes (used by LanguageSelector and ThemeSelector)
.dropdown-enter-active, .dropdown-leave-active {
transition: opacity 0.2s ease, transform 0.2s ease;
}
.dropdown-enter-from, .dropdown-leave-to {
opacity: 0;
transform: translateY(-8px);
}
// Dropdown button shared styles
.tui-dropdown-button {
background: var(--color-background-fore);
color: var(--color-text);
font-size: 1em;
border: 1px solid var(--color-border-color);
padding: 8px 12px;
border-radius: 0;
cursor: pointer;
}