Skip to content

Commit 4211f92

Browse files
committed
update
1 parent 4e03254 commit 4211f92

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

src/lib/components/nav/Navbar.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
1818
</script>
1919

20-
<nav class="fixed left-0 top-0 z-20 mx-auto flex h-[75px] w-full items-center border-b-4 border-border bg-primary-700 border-b-2 border-black px-5 m500:h-16">
21-
<div class="mx-auto flex w-full items-center justify-between px-10 md:px-20">
20+
<nav class="fixed left-0 top-0 z-20 mx-auto flex h-[75px] w-full items-center border-b-4 border-border bg-primary-700 border-b-2 border-black px-2 m500:h-16">
21+
<div class="mx-auto flex w-full items-center justify-between px-4 md:px-20">
2222

2323

2424
<div class="flex items-center justify-start gap-10">
2525
<a href="/" class="items-center">
26-
<div class="h-12">
26+
<div class="h-8 sm:h-12">
2727
<img
2828
src={logo}
29-
class="h-12 object-contain"
29+
class="h-8 sm:h-12 object-contain"
3030
alt="Opsml Logo"
3131
/>
3232
</div>

src/routes/+layout.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<div class="layout h-screen font-sans overflow-hidden">
1212
<Navbar/>
13-
<div class="flex-1 overflow-auto pt-[75px]">
13+
<div class="flex-1 overflow-auto">
1414
{@render children()}
1515
</div>
1616
</div>

src/routes/+page.svelte

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
});
1111
</script>
1212

13-
<div class="grid-background min-h-screen flex flex-col">
13+
<div class="grid-background min-h-screen flex flex-col overflow-auto">
1414
<!-- Overview Section -->
15-
<div class="flex flex-col items-center justify-center p-10 max-w-4xl mx-auto">
15+
<div class="flex flex-col items-center justify-center p-10 max-w-4xl mx-auto pt-20">
1616
<div class="flex flex-col p-10 text-center items-center justify-center" id="overview">
17-
<h1 class="text-4xl font-bold mb-4 text-primary-800">Quality Control For Machine Learning</h1>
18-
<p class="text-lg text-black">Our mission is to standardize and unify machine learning workflow management through high-performance developer tools</p>
17+
<h1 class="text-2xl md:text-4xl font-bold mb-4 text-primary-800">Quality Control For Machine Learning</h1>
18+
<p class="md:text-lg text-black">Our mission is to standardize and unify machine learning workflow management through high-performance developer tools</p>
1919
</div>
2020
</div>
2121

@@ -25,27 +25,27 @@
2525
<h1 class="text-4xl font-bold mb-4 text-primary-800 w-full text-left">Projects</h1>
2626
</div>
2727
<div class="flex flex-row flex-wrap gap-4 justify-center">
28-
<a class="text-black rounded-base shadow border-2 border-black bg-primary-500 w-[400px] h-[90px] overflow-hidden hover:translate-x-[4px] hover:translate-y-[4px] hover:shadow-none p-2" href="https://docs.demml.io/opsml">
28+
<a class="text-black rounded-base shadow border-2 border-black bg-primary-500 w-[300px] min-h-[90px] overflow-hidden hover:translate-x-[4px] hover:translate-y-[4px] hover:shadow-none p-2" href="https://docs.demml.io/opsml">
2929
<div class="h-12 flex justify-center items-center">
3030
<img
3131
src={opsml_logo}
3232
class="h-12 object-contain"
3333
alt="Opsml Logo"
3434
/>
3535
</div>
36-
<span class="text-sm text-black text-center block pt-1">
36+
<span class="text-xs sm:text-sm text-black text-center block pt-1">
3737
High performance artifact management for Python
3838
</span>
3939
</a>
40-
<a class="text-black rounded-base shadow border-2 border-black bg-error-500 w-[400px] h-[90px] overflow-hidden hover:translate-x-[4px] hover:translate-y-[4px] hover:shadow-none p-2" href="https://docs.demml.io/scouter">
40+
<a class="text-black rounded-base shadow border-2 border-black bg-error-500 w-[300px] min-h-[90px] overflow-hidden hover:translate-x-[4px] hover:translate-y-[4px] hover:shadow-none p-2" href="https://docs.demml.io/scouter">
4141
<div class="h-12 flex justify-center items-center">
4242
<img
4343
src={scouter_logo}
4444
class="h-12 object-contain"
4545
alt="Scouter Logo"
4646
/>
4747
</div>
48-
<span class="text-sm text-black text-center block pt-1">
48+
<span class="text-xs sm:text-sm text-black text-center block pt-1">
4949
High performance model monitoring for Python
5050
</span>
5151
</a>

0 commit comments

Comments
 (0)