Show warning when inbox relays aren't configured

This commit is contained in:
Jon Staab
2024-10-11 13:02:48 -07:00
parent 064c69eed0
commit 6fc3900786
10 changed files with 170 additions and 89 deletions
+26 -2
View File
@@ -56,7 +56,7 @@
.hover\:bg-alt:hover,
.bg-alt .bg-alt .hover\:bg-alt:hover,
.bg-alt .bg-alt.hover\:bg-alt:hover {
@apply bg-base-100 transition-colors text-base-content;
@apply bg-base-100 text-base-content transition-colors;
}
.bg-alt .bg-alt,
@@ -65,7 +65,7 @@
.bg-alt .bg-alt .bg-alt .hover\:bg-alt:hover,
.bg-alt.hover\:bg-alt:hover,
.bg-alt .bg-alt .bg-alt.hover\:bg-alt:hover {
@apply bg-base-300 transition-colors text-base-content;
@apply bg-base-300 text-base-content transition-colors;
}
.card2 {
@@ -84,6 +84,30 @@
@apply flex items-center justify-center;
}
.row-2 {
@apply flex items-center gap-2;
}
.row-3 {
@apply flex items-center gap-3;
}
.row-4 {
@apply flex items-center gap-4;
}
.col-2 {
@apply flex flex-col gap-2;
}
.col-3 {
@apply flex flex-col gap-3;
}
.col-4 {
@apply flex flex-col gap-4;
}
.content {
@apply m-auto w-full max-w-3xl p-4 sm:p-8 md:p-12;
}