Skip to content

Commit 3e0fc8f

Browse files
committed
removed Solve Labs SVG from mobile version horizontal position
1 parent cff6b65 commit 3e0fc8f

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/components/Nav.astro

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const links = [
88
99
const currentPage = Astro.url.pathname;
1010
---
11-
1211
<nav>
1312
<ul class="nav-list">
1413
{links.map(({ href, name, icon }) => {
@@ -51,9 +50,11 @@ const currentPage = Astro.url.pathname;
5150

5251
.nav-link.active {
5352
color: #e9a506;
54-
border-bottom: 2px solid #ff7200;
53+
border-bottom: 3px solid #ff7200;
54+
5555
}
5656

57+
5758
.nav-link:hover {
5859
color: #e9a506;
5960
}
@@ -62,7 +63,7 @@ const currentPage = Astro.url.pathname;
6263
width: 90px;
6364
height: 40px;
6465
margin-right: 4px;
65-
66+
6667
}
6768
@media (max-width: 768px) {
6869

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Beyond our commercial projects, we are passionate contributors to open‑source projects with our own time and investments (not excluding forms of ### crowdfunding) and use of open-source software and tools.
1+
### Beyond our commercial projects, we are passionate contributors to open‑source projects with our own time and investments (not excluding forms of ### crowdfunding) and use of open-source software and tools.
22
### With the same principles we actively support non-profit initiatives, sharing our expertise to drive innovation and social good.
33
### [OpenCommHand macropad project](https://github.com/dd-solve/OpenCommHand)
44
### [OpenCommHand automatic test setup](https://github.com/dd-solve/OpenCommHand_AutoTest)

src/layouts/Layout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const { title } = Astro.props;
1818
<!-- Logo -->
1919
<a href="..\" class="flex items-end gap-2">
2020
<img src="/DD_Logo.svg" alt="Logo" class="w-10 h-10 md:w-12 md:h-12 transform scale-130 align-bottom" />
21-
<img src="/DD_SolveLabs.svg" alt="Logo Text" class="w-10 h-10 md:w-12 md:h-12 transform scale-180 ml-4 relative top-[14px]" />
21+
<img src="/DD_SolveLabs.svg" alt="Logo Text" class="hidden md:block w-10 h-10 md:w-12 md:h-12 transform scale-180 ml-4 relative top-[14px]" />
2222
</a>
2323
<!-- Navigation -->
2424
<Nav /> <!-- ✅ Include the Nav component here -->

0 commit comments

Comments
 (0)