Skip to content
Open
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
1 change: 1 addition & 0 deletions src/components/address-picker/address-picker.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

.input::placeholder {
color: var(--text-muted);
border-radius: 12px;
}

.locationIcon {
Expand Down
2 changes: 1 addition & 1 deletion src/components/header/auth-status/auth-status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const AuthStatus = ({
<Button onClick={onLogIn} variant="secondary">
Log in
</Button>
<Button variant="secondary" onClick={onLogIn}>
<Button variant="primary" onClick={onLogIn}>
Sign up {null}
</Button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/hero-section/hero-section.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

.actions {
display: flex;
gap: 8px;
column-gap: var(--space-16);
}

.heading {
Expand Down
4 changes: 1 addition & 3 deletions src/components/hero-section/hero-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ export const HeroSection = ({ className }: HeroSectionProps) => {
<div className={classNames(styles.root, className)}>
<div className={styles.content}>
<div className={styles.leftSideContainer}>
<h1 className={styles.heading}>
Get your food delivered in under half an hour
</h1>
<h1 className={styles.heading}>Get your food delivered in no time</h1>
<div className={styles.locationSection}>
<AddressPicker />
<div className={styles.actions}>
Expand Down