Skip to content
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

fix: stack ui MAR-323 #638

Merged
merged 4 commits into from
Dec 9, 2024
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
6 changes: 3 additions & 3 deletions apps/frontend/src/app/(onboarding)/calendar/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ const CalendarConnect = () => {
<div className="flex size-3/4 flex-col items-center justify-center gap-12">
<div className="flex flex-col justify-center gap-4">
<div className="flex flex-col gap-2">
<h1 className="font-medium">
Connect Your{" "}
<span className="text-primary-foreground">calendar</span>
<h1 className="whitespace-nowrap font-medium">
Connect Your
<span className="ml-1 text-primary-foreground">calendar</span>
</h1>
<p className="max-w-[320px] pl-1 text-start text-xs font-semibold text-secondary-foreground">
sync your daily agenda with march and take notes
Expand Down
8 changes: 4 additions & 4 deletions apps/frontend/src/app/(onboarding)/stack/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ const StackConnect: React.FC = () => {
return (
<main className="flex h-full flex-col items-center">
<div className="flex size-full flex-col items-center justify-center gap-12 pb-4">
<div className="mr-[120px] font-medium ">
<h1>Connect your stack</h1>
<h1 className="text-start">
to <span className="text-primary-foreground">stay in the flow</span>
<div className="font-medium ">
<h1>
Connect your stack to{" "}
<span className="text-primary-foreground">stay in the flow</span>
</h1>
</div>
<div className="flex flex-col gap-2 text-base font-medium text-secondary-foreground">
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/components/onboarding/stack.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const Stack = ({ user }): JSX.Element => {
[handleCalLogin, handleCalRevoke, handleLinearLogin]
)
return (
<div className="ml-[120px] grid grid-cols-2 gap-4">
<div className="flex gap-4">
{integrations.map((integration) => (
<StackItems
key={integration.key}
Expand Down
Loading