add midnight theme and fix some styles

This commit is contained in:
pa
2026-01-18 15:45:36 +09:00
committed by Natsumi
parent 46750d3a0c
commit c326e4fd3e
37 changed files with 655 additions and 471 deletions

View File

@@ -3,10 +3,6 @@ import { TooltipWrapper } from '../components/ui/tooltip';
import AvatarInfo from '../components/AvatarInfo.vue';
import CountdownTimer from '../components/CountdownTimer.vue';
import DisplayName from '../components/DisplayName.vue';
import InstanceInfo from '../components/InstanceInfo.vue';
import InviteYourself from '../components/InviteYourself.vue';
import LastJoin from '../components/LastJoin.vue';
import Launch from '../components/Launch.vue';
import Location from '../components/Location.vue';
import LocationWorld from '../components/LocationWorld.vue';
import Timer from '../components/Timer.vue';
@@ -14,13 +10,9 @@ import Timer from '../components/Timer.vue';
export function initComponents(app) {
app.component('Location', Location);
app.component('Timer', Timer);
app.component('InstanceInfo', InstanceInfo);
app.component('LastJoin', LastJoin);
app.component('CountdownTimer', CountdownTimer);
app.component('AvatarInfo', AvatarInfo);
app.component('DisplayName', DisplayName);
app.component('InviteYourself', InviteYourself);
app.component('Launch', Launch);
app.component('LocationWorld', LocationWorld);
app.component('TooltipWrapper', TooltipWrapper);
}