Relay front updates: payments, API, terms (markdown), styling; remove LNbits service

Made-with: Love
This commit is contained in:
2026-04-29 05:48:14 +00:00
parent c6749839af
commit 4f7c6601a3
20 changed files with 2955 additions and 3570 deletions

View File

@@ -1,3 +1,39 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import 'tailwindcss';
@plugin '@tailwindcss/typography';
@theme {
--animate-slide-up: slide-up 0.3s ease-out;
--animate-fade-in: fade-in 0.3s ease-out;
--animate-success-appear: success-appear 0.5s ease-out;
}
@keyframes slide-up {
0% {
transform: translateY(100%);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes success-appear {
0% {
transform: scale(0.8);
opacity: 0;
}
100% {
transform: scale(1);
opacity: 1;
}
}