Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/studio/src/modules/onboarding/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const GradientBox = () => {
className="gap-0 flex flex-col font-normal text-[42px] leading-[42px] text-white"
>
<div className="flex flex-col gap-1 relative self-stretch pb-1">
<div className="absolute inset-0 bg-gradient-to-b from-[var(--color-frame-theme)] to-[var(--color-frame-theme)]/60"></div>
<div className="absolute inset-0 bg-gradient-to-b from-[var(--color-frame-theme)] to-[var(--color-frame-theme)]/60 dark:from-chrome dark:to-chrome/60"></div>
<p>{ __( 'Imagine' ) }</p>
<p>{ __( 'Create' ) }</p>
<p>{ __( 'Design' ) }</p>
Expand Down Expand Up @@ -49,7 +49,7 @@ export function Onboarding() {

return (
<div className="flex flex-row flex-grow" data-testid="onboarding">
<div className="w-1/2 bg-frame-theme pb-[50px] pt-[46px] px-[50px] flex flex-col justify-between">
<div className="w-1/2 bg-frame-theme dark:bg-chrome pb-[50px] pt-[46px] px-[50px] flex flex-col justify-between">
<div className="flex justify-start items-center gap-1 mt-6">
<StudioLogo className="fill-white" />
</div>
Expand Down
Loading