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
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const CancelPlan: React.FC = () => {
title="Cancel Subscription"
description="Cancelling your subscription will downgrade your workspace to the free tier."
border="both"
className="border-t w-full"
className="w-full"
contentWidth="w-full lg:w-[320px]"
>
<div className="w-full flex h-full items-center justify-end gap-4">
Expand Down
2 changes: 1 addition & 1 deletion web/internal/ui/src/components/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Card = React.forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElemen
({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("rounded-lg border bg-background border-border ", className)}
className={cn("w-full rounded-lg border bg-background border-border ", className)}
{...props}
/>
),
Expand Down
2 changes: 1 addition & 1 deletion web/internal/ui/src/components/settings-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ function SettingCard({
};

return (
<div className={cn(getBorderRadiusClass(), borderClass, expandedBottomRadius)}>
<div className={cn("w-full", getBorderRadiusClass(), borderClass, expandedBottomRadius)}>
<div
className={cn(
"px-6 py-6 lg:w-full flex gap-6 lg:justify-between lg:items-center flex-col lg:flex-row group",
Expand Down
Loading