Add example notifications and invites tab and improve ux
All checks were successful
Android Build / publish (push) Successful in 45s
Linux Build / publish (push) Successful in 52s

This commit is contained in:
olcxja 2026-05-19 23:28:08 +02:00
commit f63f8dd77c
8 changed files with 264 additions and 24 deletions

View file

@ -40,6 +40,7 @@ html {
}
body {
padding-top: env(safe-area-inset-top);
padding-bottom: env(safe-area-inset-bottom);
background-color: var(--main-bg-color);
overflow: hidden;
display: flex;
@ -94,6 +95,8 @@ button, input {
input {
padding-left: calc(var(--button-margin) * 2);
-webkit-touch-callout: default;
user-select: text !important;
-webkit-user-select: text !important;
}
@ -541,4 +544,13 @@ space{
opacity: 1;
pointer-events: auto;
}
}
.collapse-text-button.selected {
background-color: rgba(240, 240, 245, 0.1);
}
.submit-button.tab-inactive {
background-color: transparent;
color: var(--text-color);
}