Skip to content

Commit c5dd01d

Browse files
committed
Try again to fix deploy
1 parent c2abb1c commit c5dd01d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/Deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
types: [opened, synchronize]
1010

1111
env:
12-
GH_USERNAME: "kescobo"
12+
GH_USERNAME: "bonhamlab"
1313
PREVIEWS_PREFIX: "previews/PR" # will be followed by PR number
1414

1515
jobs:
@@ -44,6 +44,6 @@ jobs:
4444
with:
4545
message: |
4646
Preview should be up in a couple of mins at
47-
https://blog.bonham.ch/${{ env.PRID }}
47+
https://bonhamlab.github.io/${{ env.PRID }}
4848
(if you get a 404, wait 30s then refresh).
4949
if: github.event_name == 'pull_request'

_css/franklin.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
--small: 14px;
99
--normal: 19px;
1010
--text-color: hsv(0, 0%, 20%);
11+
--max-width: 900px;
1112
}
1213

1314
/* ==================================================================
@@ -89,7 +90,7 @@ html {
8990
/* On wide screens, fix content width to a max value. */
9091
@media (min-width: 940px) {
9192
.franklin-content {
92-
width: 900px;
93+
width: var(--max-width);
9394
margin-left: auto;
9495
margin-right: auto;
9596
}

_css/hypertext.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,5 @@ hr {
6767
border: 0;
6868
height: 1px;
6969
background-color: #ddd;
70+
max-width: var(--max-width);
7071
}

0 commit comments

Comments
 (0)