Skip to content

Commit

Permalink
Web onboarding improvements (#2387)
Browse files Browse the repository at this point in the history
  • Loading branch information
Robinnnnn authored Mar 28, 2024
1 parent 03aa4fe commit c896500
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/components/Onboarding/FullPageCenteredStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ function OnboardingProgressBar({ from, to }: OnboardingProgressBarProps) {
}

const StyledBar = styled(motion.div)`
height: 12px;
height: 8px;
background-color: ${colors.activeBlue};
position: absolute;
top: 0;
left: 0;
border-bottom-right-radius: 8px;
border-bottom-right-radius: 4px;
`;
2 changes: 1 addition & 1 deletion packages/shared/src/utils/regex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const VALID_URL_IGNORE_MARKDOWN =
/(\[([^\]]*?)\]\((https?:\/\/[^\s,)]+)\))|((https?:\/\/|www\.)[^\s,)]+)/g;

// standard email format x@x.xx
export const EMAIL_FORMAT = /^[\w-\.+]+@([\w-]+\.)+[\w-]{2,4}$/;
export const EMAIL_FORMAT = /^[\w-\.+]+@([\w-]+\.)+[\w-]+$/;

// break lines
export const BREAK_LINES = /(\r\n|\n|\r|\\\n)/gm;
Expand Down

0 comments on commit c896500

Please sign in to comment.