Skip to content

Commit f0c161d

Browse files
Tweak semi font and usage (#2496)
* Tweak semi font and usage * Undo remove semi from HL
1 parent 98103a2 commit f0c161d

File tree

8 files changed

+6
-7
lines changed

8 files changed

+6
-7
lines changed

app/pages/project/instances/instance/InstancePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export function InstancePage() {
182182
<PropertiesTable.Row label="vpc">
183183
{vpc ? (
184184
<Link
185-
className="link-with-underline group text-sans-semi-md"
185+
className="link-with-underline group text-sans-md"
186186
to={pb.vpc({ project: instanceSelector.project, vpc: vpc.name })}
187187
>
188188
{vpc.name}

app/table/cells/LinkCell.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import { Link } from 'react-router-dom'
1010

1111
import { classed } from '~/util/classed'
1212

13-
const linkClass =
14-
'link-with-underline group flex h-full w-full items-center text-sans-semi-md'
13+
const linkClass = 'link-with-underline group flex h-full w-full items-center text-sans-md'
1514

1615
/** Pushes out the link area to the entire cell for improved clickability™ */
1716
const Pusher = classed.div`absolute inset-0 right-px group-hover:bg-raise`
-21.4 KB
Binary file not shown.
-17.6 KB
Binary file not shown.
21.3 KB
Binary file not shown.
17.4 KB
Binary file not shown.

app/ui/lib/CopyableIp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const CopyableIp = ({ ip, isLinked = true }: { ip: string; isLinked?: boo
1111
<span className="flex items-center gap-1">
1212
{isLinked ? (
1313
<a
14-
className="link-with-underline text-sans-semi-md"
14+
className="link-with-underline text-sans-md"
1515
href={`https://${ip}`}
1616
target="_blank"
1717
rel="noreferrer"

app/ui/styles/fonts.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
@font-face {
5959
font-family: 'SuisseIntl';
6060
src:
61-
url('../assets/fonts/SuisseIntl-Book-WebS.woff2') format('woff2'),
62-
url('../assets/fonts/SuisseIntl-Book-WebS.woff') format('woff');
63-
font-weight: 600;
61+
url('../assets/fonts/SuisseIntl-Medium-WebS.woff2') format('woff2'),
62+
url('../assets/fonts/SuisseIntl-Medium-WebS.woff') format('woff');
63+
font-weight: 500;
6464
font-style: normal;
6565
}

0 commit comments

Comments
 (0)