Skip to content

Commit

Permalink
Don't strip folder names given in JSON. Reduce font size of file entr…
Browse files Browse the repository at this point in the history
…ies.
  • Loading branch information
t-paul committed Dec 2, 2023
1 parent 26a988e commit 9e2ee1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions advent-calendar-2023/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
return s.substr(s.length-size);
}
function getName(path) {
return path.replace(/^.*[\\\/]/, '')
return path;
}
function getList(v) {
if (v) {
Expand Down Expand Up @@ -485,7 +485,7 @@

.modal-body li {
font-family: "Open Sans";
font-size: 1.5em;
font-size: 1.4em;
color: #9dcb51;
list-style: none;
line-height: 2em;
Expand Down

0 comments on commit 9e2ee1f

Please sign in to comment.