Skip to content

Commit 6bf7940

Browse files
committed
Fix overflow with long links in letterbox layout
1 parent e0903a8 commit 6bf7940

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@
8585
"hljs-enhance": "~2.0"
8686
},
8787
"devDependencies": {
88-
"@eslint/js": "~9.24",
88+
"@eslint/js": "~9.25",
8989
"@fortawesome/fontawesome-free": "~6.7",
9090
"@types/node": "~22.14",
9191
"add-dist-header": "~1.4",
9292
"assert-deep-strict-equal": "~1.2",
9393
"copy-file-util": "~1.2",
9494
"copy-folder-util": "~1.1",
9595
"csso-cli": "~4.0",
96-
"eslint": "~9.24",
96+
"eslint": "~9.25",
9797
"esm-to-plain-js": "~1.1",
9898
"jshint": "~2.13",
9999
"less": "~4.3",

src/css/layouts/letterbox.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ main >section+section {
7171
padding: 40px;
7272
margin: 0px auto 30px auto;
7373
}
74+
main >section >div >p >a {
75+
white-space: normal;
76+
}
7477
main >section >figure {
7578
margin-bottom: 30px;
7679
}

src/css/layouts/letterbox.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ <h1>Page Title (h1)</h1>
3434
<h2>Page Subtitle (h2)</h2>
3535
<div>
3636
<p>
37-
Picanha tenderloin leberkas alcatra jowl burgdoggen sirloin tail beef flank. Chuck ham bacon jowl pancetta flank. Sirloin alcatra sausage drumstick ball tip tongue. Salami pork landjaeger pastrami filet mignon.
37+
Picanha tenderloin leberkas alcatra jowl burgdoggen sirloin tail beef flank.&nbsp; Chuck ham bacon jowl pancetta flank.&nbsp; Sirloin alcatra sausage drumstick ball tip tongue.&nbsp; Salami pork landjaeger pastrami filet mignon.
3838
</p>
3939
<p>
40-
Frankfurter jerky brisket pork loin ham hock. Andouille bacon bresaola spare ribs landjaeger chicken biltong pork shank drumstick pork belly turkey pastrami strip steak doner. Sirloin sausage jowl flank kielbasa tenderloin. Andouille leberkas meatball hamburger short ribs bresaola filet mignon pork pig meatloaf.
40+
Frankfurter jerky brisket pork loin ham hock.&nbsp; Andouille bacon bresaola spare ribs landjaeger chicken biltong pork shank drumstick pork belly turkey pastrami strip steak doner.&nbsp; Sirloin sausage jowl flank kielbasa tenderloin.&nbsp; Andouille leberkas meatball hamburger short ribs bresaola filet mignon pork pig meatloaf.
4141
</p>
4242
</div>
4343
</section>

0 commit comments

Comments
 (0)