Fix overflow title in error message (#6583)
* Fix overflow title in error message * Add changeset
This commit is contained in:
parent
f5fddafc24
commit
66858f1f23
2 changed files with 7 additions and 0 deletions
5
.changeset/warm-bananas-provide.md
Normal file
5
.changeset/warm-bananas-provide.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fix overflow title in error message
|
|
@ -412,6 +412,7 @@ const style = /* css */ `
|
|||
padding: 24px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
#code h2 {
|
||||
|
@ -419,6 +420,7 @@ const style = /* css */ `
|
|||
color: var(--title-text);
|
||||
font-size: 18px;
|
||||
margin: 0;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
#code .link {
|
||||
|
|
Loading…
Reference in a new issue