Skip to content

Commit f80bc46

Browse files
committed
fix(pocket): add active links / test static locale
1 parent 3305778 commit f80bc46

File tree

4 files changed

+22
-15
lines changed

4 files changed

+22
-15
lines changed

ui/components/nav-top-account-profile/index.tsx

+11-11
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import { useState } from 'react'
2626
import { SettingTheme } from '../setting-theme'
2727

2828
import { useUserInfo } from '@common/state/user-info'
29+
import Link from 'next/link'
2930

3031
/**
3132
* NavTopAccountProfile
@@ -110,28 +111,27 @@ function ProfilePanel() {
110111
<div className={style.email}>{email}</div>
111112
</div>
112113
<hr />
113-
<button className={`menu ${style.menuTop}`} type="button">
114+
<Link href="/" className={`button menu ${style.menuTop}`} type="button">
114115
<HomeIcon /> {t('profile:home', 'Home')}
115-
</button>
116-
<button className="menu" type="button">
116+
</Link>
117+
<Link href="/saves" className="button menu" type="button">
117118
<SaveIcon /> {t('profile:saves', 'Saves')}
118-
</button>
119-
<button className="menu" type="button">
119+
</Link>
120+
<Link href="/collections" className="button menu" type="button">
120121
<CollectionsIcon /> {t('profile:collections', 'Collections')}
121-
</button>
122+
</Link>
123+
<Link href="/settings" className="button menu" type="button">
124+
<SettingsIcon /> {t('profile:settings', 'Settings')}
125+
</Link>
122126
<button className="menu" type="button">
123127
<AddCircledIcon /> {t('profile:add', 'Add')}
124128
</button>
125-
<button className="menu" type="button">
126-
<SettingsIcon /> {t('profile:settings', 'Settings')}
127-
</button>
128129
<hr />
129130
<div className={style.themeSelect}>
130131
<SettingTheme buttonClass={style.themeButton} />
131132
</div>
132-
133133
<hr />
134-
<button className="menu" type="button" onClick={logout}>
134+
<button className="button menu" type="button" onClick={logout}>
135135
<LockIcon /> {t('profile:log-out', 'Log Out')}
136136
</button>
137137
</div>

ui/components/nav-top-account-profile/style.module.css

+5-4
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,16 @@
2121
box-shadow: var(--shadow-medium);
2222
min-width: 200px;
2323
z-index: var(--z-index-menu);
24-
button {
24+
button,
25+
a {
2526
font-size: 0.9375rem;
26-
&:last-of-type {
27-
border-radius: 0 0 10px 10px;
28-
}
2927
svg {
3028
margin-right: 0.5rem;
3129
}
3230
}
31+
button:last-of-type {
32+
border-radius: 0 0 10px 10px;
33+
}
3334

3435
.themeButton {
3536
padding: 0.5rem;

ui/styles/pocket/global.css

+2
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,8 @@ html{scroll-padding-top:90px}
136136

137137
/* LAYOUT STYLES --------------------------------------------- */
138138

139+
html{scrollbar-gutter:stable}
140+
139141
body{background-color:var(--color-surface-base);color:var(--color-text-base);font-family:var(--font-sans-serif);font-size:1rem;font-weight:400;line-height:1.5;margin:0;text-align:left}
140142

141143
.page-container{box-sizing:content-box;margin:0 auto;max-width:var(--container-clamp);padding-left:2.5rem;padding-right:2.5rem}

ui/styles/pocket/layout.css

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
html {
2+
scrollbar-gutter: stable;
3+
}
4+
15
body {
26
margin: 0;
37
font-family: var(--font-sans-serif);

0 commit comments

Comments
 (0)