Skip to content
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

Update to support V1 code + new design (WIP) #1

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
66297bb
WIP
s-rd Nov 20, 2021
cdbad4d
Add GH packages token
s-rd Nov 20, 2021
cad0776
Remove explicit token in npmrc
s-rd Nov 20, 2021
545daa3
Try different setup. Again
s-rd Nov 20, 2021
d7947fd
Fix build error
s-rd Nov 20, 2021
0cb7fcc
Working dynamic imports as IIFE
s-rd Nov 21, 2021
395d211
Working with dynamic code-splitting for codes
s-rd Nov 22, 2021
c422746
Update fonts
s-rd Nov 23, 2021
673ad12
Progress with new setup
s-rd Nov 23, 2021
ec37523
Misc
s-rd Nov 23, 2021
6a1bc42
Add basic routing setup
s-rd Nov 24, 2021
77c4a2e
Responsive header
s-rd Nov 24, 2021
4c219de
Some scroll + color logic
s-rd Nov 24, 2021
4cb365f
List out content
s-rd Nov 24, 2021
4a416dd
Make it possible to switch language
s-rd Nov 24, 2021
93bd78d
Header interaction
s-rd Nov 25, 2021
f600c57
More mobile-friendly header etc
s-rd Nov 25, 2021
3bf426c
Translate newline characters to actual paragraphs
s-rd Nov 25, 2021
b87c5f7
Unmess up tracking/leading of body text
s-rd Nov 25, 2021
79ca30c
Add scroll interaction
s-rd Nov 27, 2021
6d606de
Scroll interaction improvements
s-rd Nov 27, 2021
f4a45d7
Remove fade on first list item
s-rd Nov 27, 2021
80f8f91
Fix bug with initializing scroll interaction when scrolled down
s-rd Nov 28, 2021
473023a
Fix overflow issue
s-rd Nov 28, 2021
2bdf0be
Shorter hover header on mobile
s-rd Nov 28, 2021
bece894
Adjust type
s-rd Nov 28, 2021
b66a7e7
Fix broken position sticky
s-rd Nov 28, 2021
b9fa22d
Fix mobile header height bug
s-rd Nov 28, 2021
40bc437
Fix broken height calc + add website translations
s-rd Nov 29, 2021
adc850d
Add nicer selection style
s-rd Nov 30, 2021
da38da3
Adjust font-size
s-rd Feb 11, 2022
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 .github/workflows/update-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- run: |
git config user.name 'Simon Dagfinrud'
git config user.email '17279882+s-rd@users.noreply.github.com'
npm i --save codeofdesign@"<1.0.0"
npm i --save codeofdesign@"<2.0.0"
export COFDVER=$(npm view codeofdesign version)
git add .
git commit -m "Update: codeofdesign v$COFDVER"
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
/node_modules/
/public/build/
/public/fonts/
/public/versions/

.DS_Store
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@codeofdesign:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=${NPM_TOKEN}
Loading