-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ATL-10: Add catch-all 404 route/page #4
Conversation
src/router.ts
Outdated
}, | ||
{ | ||
path: '/', | ||
component: DefaultVue, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cesarvh - not a merge blocker but perhaps we want DefaultView
instead of DefaultVue
?
src/styles/hartsfield-global.scss
Outdated
@@ -0,0 +1,3 @@ | |||
.frosted { | |||
background-color: #6d8cb4c3!important; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cesarvh - That seems to be an invalid hex code. And, a space is needed after the hex code.
:height="300" | ||
:width="800" | ||
class="frosted px-8 py-6 accent-border accent-text mx-auto " | ||
> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cesarvh - it seems that your "continuation indentation" rule is four spaces. I think it should be two spaces. You can enforce such rule via .eslintrc.js
@@ -1,5 +1,5 @@ | |||
<template> | |||
<v-container class="fill-height" style=""> | |||
<v-container class="fill-height"> | |||
<v-responsive class="d-flex align-center text-center fill-height "> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have an extra space in 'class' value above.
Merge pull request #17 from gmerritt/main
https://jira-secure.berkeley.edu/browse/ATL-10