Skip to content

Commit 9cdcdde

Browse files
Fix breadcrumbs null safety; update font-weight
1 parent 34a1eb1 commit 9cdcdde

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

src/lib/components/breadcrumbs.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
name: 'All projects',
163163
trailingIcon: IconList,
164164
href: resolve('/(console)/organization-[organization]', {
165-
organization: selectedOrg.$id
165+
organization: selectedOrg?.$id
166166
})
167167
};
168168

src/lib/profiles/css/studio.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
body {
22
background: var(--bgcolor-neutral-primary);
33
}
4+
45
a.primary,
56
button.primary {
7+
font-weight: 400 !important;
68
--border-width-s: 0px;
79
background:
810
linear-gradient(
@@ -16,6 +18,10 @@ button.primary {
1618
0 2px 0 0 rgba(255, 255, 255, 0.08) inset, 0 -2px 0 0 rgba(0, 0, 0, 0.24) inset,
1719
0 1px 1px 0 rgba(0, 0, 0, 0.08), 0 2px 5px 0 rgba(0, 0, 0, 0.16);
1820
}
21+
a.secondary,
22+
button.secondary {
23+
font-weight: 400 !important;
24+
}
1925

2026
a.primary:hover,
2127
button.primary:hover {

0 commit comments

Comments
 (0)