mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-15 04:32:13 +00:00
fix: repacks-modal title overflow bug
This commit is contained in:
parent
76981b4fc8
commit
a19ce240af
1 changed files with 3 additions and 1 deletions
|
@ -85,7 +85,9 @@ export function RepacksModal({
|
||||||
onClick={() => handleRepackClick(repack)}
|
onClick={() => handleRepackClick(repack)}
|
||||||
className={styles.repackButton}
|
className={styles.repackButton}
|
||||||
>
|
>
|
||||||
<p style={{ color: "#DADBE1" }}>{repack.title}</p>
|
<p style={{ color: "#DADBE1", wordBreak: "break-word" }}>
|
||||||
|
{repack.title}
|
||||||
|
</p>
|
||||||
<p style={{ fontSize: "12px" }}>
|
<p style={{ fontSize: "12px" }}>
|
||||||
{repack.fileSize} - {repackersFriendlyNames[repack.repacker]} -{" "}
|
{repack.fileSize} - {repackersFriendlyNames[repack.repacker]} -{" "}
|
||||||
{repack.uploadDate
|
{repack.uploadDate
|
||||||
|
|
Loading…
Reference in a new issue