This commit is contained in:
2026-05-16 11:23:11 +07:00
parent acd970ce67
commit 8ec7c3b47d
3 changed files with 5 additions and 2 deletions
+2
View File
@@ -38,6 +38,8 @@
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
:root { :root {
color-scheme: only dark;
--color-background: var(--vt-c-black); --color-background: var(--vt-c-black);
--color-background-soft: var(--vt-c-black-soft); --color-background-soft: var(--vt-c-black-soft);
--color-background-mute: var(--vt-c-black-mute); --color-background-mute: var(--vt-c-black-mute);
+1 -1
View File
@@ -85,7 +85,7 @@ onMounted(async () => {
} }
.hr { .hr {
margin: 5px; margin: 10px;
} }
.relative-day-name { .relative-day-name {
+2 -1
View File
@@ -14,7 +14,8 @@ export const apiGetDays = async (): Promise<Schedule> => {
} }
export function getApiUrl(path: string) { export function getApiUrl(path: string) {
const url = 'http://' + window.location.host.split(':')[0] + ':8210' + path const url = 'https://' + window.location.host.split(':')[0] + path
// const url = 'http://localhost:8210' + path
return url return url
} }