bit wider

This commit is contained in:
lingdocs 2022-08-05 12:21:31 -05:00
parent 4d5d09b590
commit bb7ed9f8ad
2 changed files with 6 additions and 2 deletions

View File

@ -117,6 +117,10 @@ hr {
max-width: 700px;
}
.wide-width-limiter {
max-width: 800px;
}
.thin-column {
max-width: 1rem;
}

View File

@ -125,7 +125,7 @@ function IsolatedEntry({ state, dictionary, isolateEntry }: {
return null;
}
}
return <div className="width-limiter">
return <div className="wide-width-limiter">
<Helmet>
<title>{entry.p} - LingDocs Pashto Dictionary</title>
</Helmet>
@ -238,7 +238,7 @@ function IsolatedEntry({ state, dictionary, isolateEntry }: {
</div>}
{!!(relatedEntries && relatedEntries.length) ? <>
<h4>Related Words</h4>
<h4 style={{ marginTop: "5rem" }}>Related Words</h4>
<Results
state={{ ...state, results: relatedEntries }}
isolateEntry={isolateEntry}