feat: add tg api
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m35s

This commit is contained in:
Hewston Fox
2026-03-16 00:50:53 +02:00
parent 67c2721cff
commit 9f0ff8c4e5
29 changed files with 544 additions and 40 deletions

View File

@@ -0,0 +1,38 @@
@layer base {
.overlay {
position: fixed;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
}
.modal {
display: flex;
flex-direction: column;
gap: 6px;
width: 100%;
max-width: 320px;
padding: 13px;
.content {
border-radius: 22px;
.description {
padding: 12px;
border-radius: 18px;
text-align: center;
}
}
}
.buttons {
display: flex;
gap: 6px;
}
.button {
flex: 1;
}
}