Skip to content

Commit acbc03d

Browse files
nekiworickstaa
andauthored
Fix card length during error (#2105)
* Fix card length during error Fixes #1774 The size of the box should be 550px to allow 25px padding from both sides I found the width of the text using `getComputedTextLength()` method * fix: improve error card size Co-authored-by: rickstaa <[email protected]>
1 parent 388ba06 commit acbc03d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/utils.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import { themes } from "../../themes/index.js";
1111
*/
1212
const renderError = (message, secondaryMessage = "") => {
1313
return `
14-
<svg width="495" height="120" viewBox="0 0 495 120" fill="none" xmlns="http://www.w3.org/2000/svg">
14+
<svg width="576.5" height="120" viewBox="0 0 576.5 120" fill="none" xmlns="http://www.w3.org/2000/svg">
1515
<style>
1616
.text { font: 600 16px 'Segoe UI', Ubuntu, Sans-Serif; fill: #2F80ED }
1717
.small { font: 600 12px 'Segoe UI', Ubuntu, Sans-Serif; fill: #252525 }
1818
.gray { fill: #858585 }
1919
</style>
20-
<rect x="0.5" y="0.5" width="494" height="99%" rx="4.5" fill="#FFFEFE" stroke="#E4E2E2"/>
20+
<rect x="0.5" y="0.5" width="575.5" height="99%" rx="4.5" fill="#FFFEFE" stroke="#E4E2E2"/>
2121
<text x="25" y="45" class="text">Something went wrong! file an issue at https://tiny.one/readme-stats</text>
2222
<text data-testid="message" x="25" y="55" class="text small">
2323
<tspan x="25" dy="18">${encodeHTML(message)}</tspan>

0 commit comments

Comments
 (0)