mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-24 09:45:11 +02:00
28 lines
525 B
CSS
28 lines
525 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
a {
|
|
@apply hover:text-amber-200;
|
|
}
|
|
|
|
.placeholder {
|
|
@apply bg-zinc-700 bg-opacity-40 animate-pulse;
|
|
}
|
|
|
|
.placeholder-image {
|
|
@apply bg-zinc-700 bg-opacity-75;
|
|
}
|
|
|
|
.selectable {
|
|
@apply focus-visible:outline outline-2 outline-[#f0cd6dc2] outline-offset-2;
|
|
}
|
|
|
|
.peer-selectable {
|
|
@apply peer-focus-visible:outline outline-2 outline-[#f0cd6dc2] outline-offset-2;
|
|
}
|
|
|
|
.selectable-explicit {
|
|
@apply focus-within:outline outline-2 outline-[#f0cd6dc2] outline-offset-2;
|
|
}
|