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
2 changes: 1 addition & 1 deletion web/src/routes/account/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function RouteComponent() {

return (
<Show when={user}>
<div class="m-auto max-w-md space-y-8">
<div class="m-auto max-w-md space-y-8 w-full">
<div class="flex gap-6 justify-center">
<AvatarEdit />
<div class="self-center space-y-2">
Expand Down
2 changes: 1 addition & 1 deletion web/src/routes/account/route.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function RouteComponent() {
</div>
</div>

<div class="mx-auto max-w-lg py-4 mt-14">
<div class="mx-auto max-w-lg py-4 mt-14 w-full">
<div class="flex items-center gap-4 justify-center mb-8">
<MainMenu menu={tabs()} active={(path) => location().pathname.startsWith(path)} />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const GradingPaper = (props: Props) => {
return (
<Show when={grading.data}>
<Form onSubmit={saveGrade}>
<div class="text-let m-8 p-8 bg-base-100 rounded space-y-8">
<div class="text-left m-8 p-8 bg-base-100 rounded space-y-8">
<Question question={grading.data!.question} />

<div class="divider" />
Expand Down
Loading