Add steps to default sidebar step for clarity

This commit is contained in:
Tyler Hallada 2022-03-19 16:29:06 -04:00
parent a69a04221a
commit 6d0eed2628
4 changed files with 20 additions and 3 deletions

View File

@ -46,8 +46,9 @@ const DataDirPicker: React.FC<Props> = () => {
return ( return (
<> <>
<p className={styles["no-top-margin"]}> <p>
Select or drag-and-drop your Skyrim{" "} <strong className={styles.step}>1. </strong>Select or drag-and-drop your
Skyrim{" "}
<strong> <strong>
<code>Data</code> <code>Data</code>
</strong>{" "} </strong>{" "}

View File

@ -33,7 +33,7 @@ const PluginTxtEditor: React.FC<Props> = () => {
return ( return (
<> <>
<p className={styles["top-spacing"]}> <p className={styles["top-spacing"]}>
Paste or drag-and-drop your{" "} <strong className={styles.step}>2. </strong>Paste or drag-and-drop your{" "}
<strong> <strong>
<code>plugins.txt</code> <code>plugins.txt</code>
</strong>{" "} </strong>{" "}

View File

@ -1,3 +1,7 @@
.no-top-margin { .no-top-margin {
margin-top: 0; margin-top: 0;
} }
.step {
font-size: 1.5rem;
}

View File

@ -30,6 +30,18 @@
margin-top: 34px; margin-top: 34px;
} }
.no-top-margin {
margin-top: 0;
}
.no-bottom-margin {
margin-bottom: 0;
}
.step {
font-size: 1.5rem;
}
.break-word { .break-word {
word-break: break-word; word-break: break-word;
} }