Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions frontend/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
--color-popover: var(--popover);
--color-card-foreground: var(--card-foreground);
--color-card: var(--card);
--color-sub-text: var(--sub-text);
--color-text: var(--text);
--radius-sm: calc(var(--radius) - 4px);
--radius-md: calc(var(--radius) - 2px);
--radius-lg: var(--radius);
Expand Down Expand Up @@ -88,6 +90,8 @@
--sidebar-accent-foreground: oklch(0.205 0 0);
--sidebar-border: oklch(0.922 0 0);
--sidebar-ring: oklch(0.708 0 0);
--sub-text: oklch(0.281 0.0773 254.77 / 0.7);
--text: oklch(0.281 0.0773 254.77);
Comment thread
naasanov marked this conversation as resolved.
--modal-overlay: oklch(0 0 0 / 0.5);
}

Expand Down Expand Up @@ -157,23 +161,26 @@
}

.page-title {
@apply text-2xl font-semibold;
@apply text-2xl font-semibold text-text;
}

.subhead-title {
@apply text-xl font-semibold;
@apply text-xl font-semibold text-text;
}

.subhead-content {
@apply text-lg font-normal;
@apply text-lg font-bold text-text;
}

.content {
@apply text-sm font-normal;
@apply text-base font-normal text-text;
}

.content-bold {
@apply text-sm font-medium;
@apply text-base font-bold text-text;
}
.content-sub {
@apply text-sm font-normal text-sub-text;
}
}

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function RootLayout({
return (
<html lang="en">
<body
className={`${avenirNext.variable} font-[family-name:var(--font-avenir-next)] antialiased`}
className={`${avenirNext.variable} font-[family-name:var(--font-avenir-next)] antialiased h-screen overflow-hidden`}
>
<Providers>
<Header />
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/app/student/_components/EditPartyDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ export function EditPartyDialog({
<PartyRegistrationForm
onSubmit={handleSubmit}
initialValues={initialValues}
studentEmail={studentQuery.data?.email}
studentPhoneNumber={studentQuery.data?.phone_number}
student={studentQuery.data}
mode="edit"
/>
</DialogContent>
Expand Down
Loading
Loading