File tree Expand file tree Collapse file tree 7 files changed +11
-36
lines changed Expand file tree Collapse file tree 7 files changed +11
-36
lines changed Original file line number Diff line number Diff line change 1
- FROM node:20-bullseye as base
1
+ FROM node:20-bullseye AS base
2
2
3
3
ARG PUBLIC_APPWRITE_ENDPOINT
4
4
ENV PUBLIC_APPWRITE_ENDPOINT ${PUBLIC_APPWRITE_ENDPOINT}
@@ -60,13 +60,13 @@ COPY pnpm-lock.yaml pnpm-lock.yaml
60
60
RUN npm i -g corepack@latest
61
61
RUN corepack enable
62
62
63
- FROM base as build
63
+ FROM base AS build
64
64
65
65
COPY . .
66
66
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
67
67
RUN NODE_OPTIONS=--max_old_space_size=16384 pnpm run build
68
68
69
- FROM base as final
69
+ FROM base AS final
70
70
71
71
# Install fontconfig
72
72
COPY ./local-fonts /usr/share/fonts
Original file line number Diff line number Diff line change 135
135
flex-basis : 5rem !important ;
136
136
}
137
137
138
- .web-strip-plans-item-wrapper {
139
- gap : 2.65rem ;
140
- }
141
-
142
138
@media (min-width : 1024px ) and (max-width : 1224px ) {
143
139
.web-strip-plans-info {
144
140
flex-basis : 1rem !important ;
145
141
}
146
-
147
- .web-strip-plans-item-wrapper {
148
- gap : 1.25rem !important ;
149
- inline-size : 100% !important ;
150
- }
151
142
}
152
143
153
144
@media (max-width : 1024px ) {
154
145
.web-strip-plans-info {
155
146
flex-basis : 3rem !important ;
156
147
}
157
-
158
- .web-strip-plans-item-wrapper {
159
- gap : 1.25rem !important ;
160
- }
161
148
}
162
149
163
150
.web-pre-footer-bg {
Original file line number Diff line number Diff line change 98
98
on:emblaInit ={onEmblaInit }
99
99
>
100
100
<div class =" embla__container flex" >
101
- {#each events as _ }
101
+ {#each events as { poster, title } }
102
102
<div
103
103
class =" embla__slide bg-card/90 mr-4 min-w-0 [flex:0_0_33%] items-center rounded-lg p-4"
104
104
>
105
- <img src ={_ . poster } class =" m-auto rounded-t" />
106
- <h3 class ="mt-0.5 text-base font-medium" >{_ . title }</h3 >
105
+ <img alt ={ title } src ={poster } class =" m-auto rounded-t" />
106
+ <h3 class ="mt-0.5 text-base font-medium" >{title }</h3 >
107
107
</div >
108
108
{/each }
109
109
</div >
Original file line number Diff line number Diff line change 1
- import { APPWRITE_DB_INIT_ID , APPWRITE_COL_INIT_ID } from '$env/static/private' ;
2
- import { DOMParser , parseHTML } from 'linkedom' ;
3
-
4
- import type { TicketData } from './tickets' ;
1
+ import { APPWRITE_COL_INIT_ID , APPWRITE_DB_INIT_ID } from '$env/static/private' ;
2
+ import { parseHTML } from 'linkedom' ;
5
3
import { z } from 'zod' ;
6
4
import { createInitServerClient } from './appwrite' ;
5
+ import type { TicketData } from './tickets' ;
7
6
8
7
const contributionsSchema = z . array ( z . array ( z . number ( ) ) ) ;
9
8
export type ContributionsMatrix = z . infer < typeof contributionsSchema > ;
Original file line number Diff line number Diff line change 1
- import { redirect , type Action , type Actions } from '@sveltejs/kit' ;
1
+ import { redirect , type Actions } from '@sveltejs/kit' ;
2
2
import { getTicketByUser } from './(utils)/tickets' ;
3
- import { OAuthProvider } from 'appwrite' ;
4
- import { Account , Client } from 'node-appwrite' ;
5
- import { PUBLIC_APPWRITE_ENDPOINT , PUBLIC_APPWRITE_PROJECT_INIT_ID } from '$env/static/public' ;
6
3
import { loginGithub } from './(utils)/auth' ;
7
4
8
5
export const prerender = false ;
Original file line number Diff line number Diff line change 1
1
<script >
2
2
import { FooterNav , MainFooter , PreFooter } from ' $lib/components' ;
3
3
import Main from ' $lib/layouts/Main.svelte' ;
4
- import { DEFAULT_DESCRIPTION , DEFAULT_HOST } from ' $lib/utils/metadata' ;
4
+ import { DEFAULT_HOST } from ' $lib/utils/metadata' ;
5
5
import { TITLE_SUFFIX } from ' $routes/titles' ;
6
6
import Draft from ' ./(components)/Draft.svelte' ;
7
7
import Schedule from ' ./(components)/Schedule.svelte' ;
@@ -719,9 +719,6 @@ messaging.create_email(
719
719
@media (max-width : 500px ) {
720
720
flex-direction : column ;
721
721
gap : 1rem ;
722
- & a {
723
- width : 100% ;
724
- }
725
722
}
726
723
}
727
724
Original file line number Diff line number Diff line change 238
238
color : hsl (var (--web-color-primary ));
239
239
text-align : center ;
240
240
}
241
-
242
- button {
243
- margin-block-start : 1.5rem ;
244
- margin-inline : auto ;
245
- }
246
241
}
247
242
</style >
You can’t perform that action at this time.
0 commit comments