Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cypress/e2e/workflow/projects.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('Projects', () => {
});
});

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

cy.getDataTest('completed-projects').should('be.visible').within(() => {
Expand Down
1 change: 1 addition & 0 deletions public/_redirects
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/* /index.html 200
9 changes: 5 additions & 4 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import TopNav from './components/TopNav.vue';

<template>
<div id="app" class="min-h-screen">
<TopNav />
<TopNav data-test="nav-top-menubar" />
<main>
<RouterView />
</main>
Expand All @@ -17,8 +17,8 @@ import TopNav from './components/TopNav.vue';
body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
font-family: var(--font-family-primary);
background: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-blue-dark) 50%, var(--color-accent-blue-darker) 100%);
min-height: 100vh;
}

Expand All @@ -27,6 +27,7 @@ body {
}

main {
padding-top: 1rem;
padding-top: 80px; /* Account for fixed navigation height */
}

</style>
Loading