Skip to content

Commit

Permalink
Use digits for better text flow
Browse files Browse the repository at this point in the history
  • Loading branch information
Twixes committed Dec 5, 2023
1 parent 402d695 commit d9908b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@

.SidePanelWelcome__hero {
background: url('../../../../../public/3000/3000-launch.png') no-repeat;
background-position: right min(calc(-5rem + 75%), 0rem) bottom;
background-position: right min(-5rem + 45%, 0rem) bottom;
background-size: 22.875rem auto;
}
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ export const SidePanelWelcome = (): JSX.Element => {
👋 <span className="opacity-75">Say hello to</span>
<div className="text-primary-3000 text-2xl font-bold">PostHog 3000</div>
</h1>
<p className="max-w-120 text-sm font-medium mb-3 opacity-75">We're past zero to one.</p>
<p className="max-w-40 text-sm font-medium mb-3 opacity-75">
It's time to go from one to 3000. And this is just the beginning...
<p className="text-sm font-medium mb-3 opacity-75">We're past 0 to 1.</p>
<p className="text-sm font-medium mb-3 opacity-75" style={{ maxWidth: 'calc(50% - 1rem)' }}>

Check warning on line 109 in frontend/src/layout/navigation-3000/sidepanel/panels/SidePanelWelcome.tsx

View workflow job for this annotation

GitHub Actions / Code quality checks

style should be avoided in favor of utility CSS classes - see https://storybook.posthog.net/?path=/docs/lemon-ui-utilities--overview
It's time to go from 1 to&nbsp;3000. And&nbsp;this is just the&nbsp;beginning
</p>
<div className="flex">
<LemonButton
Expand Down

0 comments on commit d9908b0

Please sign in to comment.