add: app_data api

This commit is contained in:
trisua 2025-07-17 13:34:10 -04:00
parent 5c520f4308
commit f423daf2fc
38 changed files with 410 additions and 91 deletions

View file

@ -404,7 +404,7 @@ select:focus {
.poll_bar {
background-color: var(--color-primary);
border-radius: var(--radius);
height: 25px;
height: 24px;
}
.poll_option {
@ -413,6 +413,22 @@ select:focus {
overflow-wrap: anywhere;
}
.progress_bar {
background: var(--color-super-lowered);
border-radius: var(--circle);
position: relative;
overflow: hidden;
height: 14px;
}
.progress_bar .poll_bar {
border-radius: var(--circle);
height: 14px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
position: absolute;
}
input[type="checkbox"] {
--color: #c9b1bc;
appearance: none;