Skip to content

feat: add breadcrumbs to admin settings pages #15865

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Dec 18, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
revert css
  • Loading branch information
jaaydenh committed Dec 18, 2024
commit 10ed32d112448a635d06b15619f15220adb0170c
35 changes: 17 additions & 18 deletions site/src/components/SettingsHeader/SettingsHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,22 @@ export const SettingsHeader: FC<HeaderProps> = ({
<div css={{ maxWidth: 420, marginBottom: 24 }}>
<Stack direction="row" spacing={1} alignItems="center">
<h1
// css={[
// {
// fontSize: 32,
// fontWeight: 700,
// display: "flex",
// alignItems: "baseline",
// lineHeight: "initial",
// margin: 0,
// marginBottom: 4,
// gap: 8,
// },
// secondary && {
// fontSize: 24,
// fontWeight: 500,
// },
// ]}
className="text-3xl bg-white font-normal"
css={[
{
fontSize: 32,
fontWeight: 700,
display: "flex",
alignItems: "baseline",
lineHeight: "initial",
margin: 0,
marginBottom: 4,
gap: 8,
},
secondary && {
fontSize: 24,
fontWeight: 500,
},
]}
>
{title}
</h1>
Expand All @@ -57,7 +56,7 @@ export const SettingsHeader: FC<HeaderProps> = ({
lineHeight: "160%",
}}
>
lalkdsalk
{description}
</span>
)}
</div>
Expand Down