mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Fix empty descriptions rendering bad
This commit is contained in:
parent
e026f470fe
commit
6fc7762530
@ -60,7 +60,7 @@ const HeadingTag = levelMap[level] ?? "h6";
|
|||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
{description && <p>{description}</p>}
|
{description ? <p>{description}</p> : <p>No Description Found</p>}
|
||||||
{
|
{
|
||||||
enumVals.length !== 0 && (
|
enumVals.length !== 0 && (
|
||||||
<>
|
<>
|
||||||
@ -160,6 +160,7 @@ const HeadingTag = levelMap[level] ?? "h6";
|
|||||||
|
|
||||||
div.tool-links {
|
div.tool-links {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
gap: .5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
span {
|
span {
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user