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 (
<>
<p className={styles["no-top-margin"]}>
Select or drag-and-drop your Skyrim{" "}
<p>
<strong className={styles.step}>1. </strong>Select or drag-and-drop your
Skyrim{" "}
<strong>
<code>Data</code>
</strong>{" "}

View File

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

View File

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

View File

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