Files
vibetorrent/frontend/input.css

31 lines
538 B
CSS

@import "tailwindcss";
@config "./tailwind.config.js";
@plugin "daisyui" {
themes: light, dark, dim, nord;
}
@layer base {
html,
body {
@apply min-h-[100dvh] w-full overflow-hidden bg-base-100 text-base-content overscroll-y-none;
}
}
/* Fix for iOS click/blur events */
@media (hover: none) {
body {
cursor: pointer;
}
}
/* Remove default focus outline/tap highlight */
* {
-webkit-tap-highlight-color: transparent;
outline: none !important;
}
:focus {
outline: none !important;
}