Skip to content

Commit

Permalink
chore: Use non-deprecated word-break value
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney authored Jul 27, 2024
1 parent cab4b3c commit d3c43b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scrapyd/website.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def render_GET(self, txrequest):
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Scrapyd</title>
<style>
body {{ font-family: sans-serif; }}
body {{ font-family: system-ui, sans-serif; }}
</style>
</head>
<body>
Expand Down Expand Up @@ -373,7 +373,7 @@ def render_GET(self, txrequest):
th, td {{ border-style: solid; border-width: 1px; }}
tbody > tr:first-child {{ background-color: #eee; }}
th, td {{ padding: .5rem; }}
td:nth-child(2), td:nth-child(3) {{ word-break: break-word; }}
td:nth-child(2), td:nth-child(3) {{ word-break: break-all; }}
</style>
</head>
<body>
Expand Down

0 comments on commit d3c43b0

Please sign in to comment.