Skip to content

Commit

Permalink
поправил стили
Browse files Browse the repository at this point in the history
  • Loading branch information
dan0102dan committed Mar 24, 2024
1 parent 243e555 commit 6ff0e16
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions web/src/Components/TriggerForm/TriggerForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ const TriggerForm = ({ instId, loading, disabled, setSubscribing, subscriptions,
</div>
<div className={styles.inputGroup}>
<input
id="price"
className={styles.input}
inputMode="decimal"
min="0"
type="text"
value={price}
onChange={(e) => setPrice(e.target.value.replace(',', '.'))}
className={styles.input}
placeholder="Enter price"
/>
<select
id="trend"
value={trend}
onChange={(e) => setTrend(e.target.value)}
className={styles.select}
Expand Down
3 changes: 2 additions & 1 deletion web/src/Components/TriggerForm/TriggerForm.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
padding: 12px;
border-radius: 10px;
font-size: 16px;
background-color: var(--app-secondary-bg-color);
color: var(--app-text-color);
background-color: var(--app-section-bg-color);
border: none;
margin-right: 8px;
-webkit-appearance: none;
Expand Down

0 comments on commit 6ff0e16

Please sign in to comment.