Skip to content

Commit

Permalink
More minors changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PvtVoid committed May 4, 2024
1 parent ea91702 commit 4f746db
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
7 changes: 6 additions & 1 deletion src/routes/game/create/CreateGame.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
color: red;
}

.disclaimer {
padding: 1px;
text-align: center;
}

.button {
color: var(--primary-inverse);
margin-top: 32px;
Expand All @@ -27,5 +32,5 @@
}

.formContainer > h3 {
margin-bottom: 0.75em;
margin-bottom: 0.5em;
}
20 changes: 10 additions & 10 deletions src/routes/game/create/CreateGame.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,6 @@ const CreateGame = () => {
<div>
<article className={styles.formContainer}>
<h3>Create New Game</h3>
<p>
<small>
Talishar is an open-source, fan-made platform not associated with
LSS. It may not be a completely accurate representation of the Rules
as Written. If you have questions about interactions or rulings,
please contact the judge community for clarification.
</small>
</p>
<form onSubmit={handleSubmit(onSubmit)}>
<div className={styles.formInner}>
{isLoggedIn && !isLoading && (
Expand Down Expand Up @@ -160,7 +152,7 @@ const CreateGame = () => {
/>
<fieldset>
<label>
Deck Link:
Deck Link
<input
type="text"
id="fabdb"
Expand Down Expand Up @@ -264,8 +256,8 @@ const CreateGame = () => {
}
/>
Single Player 🤖
<div>&nbsp;</div>
</label>

{isLoggedIn && (isPatron == "1") && (
<label>
AI Deck
Expand Down Expand Up @@ -305,6 +297,14 @@ const CreateGame = () => {
<FaExclamationCircle /> {errors.root?.serverError?.message}
</div>
)}
<p>
<small className={styles.disclaimer}>
Talishar is an open-source, fan-made platform not associated with
LSS. It may not be a completely accurate representation of the Rules
as written. If you have questions about interactions or rulings,
please contact the judge community for clarification.
</small>
</p>
</form>
</article>
</div>
Expand Down

0 comments on commit 4f746db

Please sign in to comment.