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
16 changes: 16 additions & 0 deletions frontend/src/styles/media-queries-blue.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,22 @@
}
}

.pageAccountSettings {
.main {
grid-template-columns: 1fr;
grid-template-rows: auto auto;
.tabs {
padding: 0;
display: grid;
grid-auto-flow: row;
button {
justify-content: center;
padding: 1em 0.5em;
}
}
}
}

.pageFriends {
.content .friends table,
.content .pendingRequests table {
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/ts/components/pages/settings/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ function AccountSettingsNotice(): JSXElement {
});
return (
<Show when={!dismissed()}>
<div class="grid grid-cols-[auto_1fr_auto] items-center gap-8 rounded px-8 py-4 ring-4 ring-sub-alt">
<div class="grid grid-cols-[auto_1fr] items-center gap-4 rounded px-4 py-4 ring-4 ring-sub-alt md:grid-cols-[auto_1fr_auto] md:gap-8">
<Fa icon="fa-user-cog" class="text-4xl text-sub" />
<div>
Account settings have moved. You can now access them by hovering over
Expand All @@ -275,7 +275,7 @@ function AccountSettingsNotice(): JSXElement {
<Button
text="go to account settings"
href="/account-settings"
class="p-4"
class="col-span-2 p-4 md:col-span-1"
router-link
onClick={() => {
setDismissed(true);
Expand Down
Loading