Skip to content

Commit 2cf0edb

Browse files
authored
UI Styling Overhaul (#18)
2 parents 93b2743 + 1d7d4c7 commit 2cf0edb

File tree

15 files changed

+2590
-541
lines changed

15 files changed

+2590
-541
lines changed

cypress/e2e/workflow/projects.cy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('Projects', () => {
1919
});
2020
});
2121

22-
it.skip('should show a list of completed projects', () => {
22+
it('should show a list of completed projects', () => {
2323
const completedProjects = [];
2424

2525
cy.getDataTest('completed-projects').should('be.visible').within(() => {

public/_redirects

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* /index.html 200

src/App.vue

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import TopNav from './components/TopNav.vue';
44

55
<template>
66
<div id="app" class="min-h-screen">
7-
<TopNav />
7+
<TopNav data-test="nav-top-menubar" />
88
<main>
99
<RouterView />
1010
</main>
@@ -17,8 +17,8 @@ import TopNav from './components/TopNav.vue';
1717
body {
1818
margin: 0;
1919
padding: 0;
20-
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
21-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
20+
font-family: var(--font-family-primary);
21+
background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-blue-dark) 50%, var(--color-accent-blue-darker) 100%);
2222
min-height: 100vh;
2323
}
2424
@@ -27,6 +27,7 @@ body {
2727
}
2828
2929
main {
30-
padding-top: 1rem;
30+
padding-top: 80px; /* Account for fixed navigation height */
3131
}
32+
3233
</style>

0 commit comments

Comments
 (0)