-
Notifications
You must be signed in to change notification settings - Fork 39
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
Junyi-story map #4
base: main
Are you sure you want to change the base?
Conversation
modified: templates/storypages/data/title-slide.json modified: templates/storypages/index.html
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.
This looks really good for the most part! I left a few comments on the code itself, and if you run the linters you may see a few more issues:
npx eslint templates/storypages/js/
npx stylelint templates/storypages/css/
(though most if not all of those issues could be resolved by adding --fix
to each of the linter commands).
templates/storypages/index.html
Outdated
@@ -4,35 +4,96 @@ | |||
<meta charset="UTF-8"> | |||
<meta name="viewport" content="width=device-width, initial-scale=1"> | |||
|
|||
<title>Story</title> | |||
<title>Junyi's Selected Work</title> | |||
<link rel="stylesheet" href="css/normalize.css"> |
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.
suggestion: You should be able to remove this, as there's no normalize.css file in your code.
<link rel="stylesheet" href="css/normalize.css"> |
templates/storypages/css/index.css
Outdated
margin-inline-start: 0px; | ||
margin-inline-end: 0px; |
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.
suggestion: Generally in CSS, when something is set to 0
, the units are omitted. It's kind of arbitrary, but it's the overwhelming accepted convention.
margin-inline-start: 0px; | |
margin-inline-end: 0px; | |
margin-inline-start: 0; | |
margin-inline-end: 0; |
No description provided.