Skip to content
Snippets Groups Projects
Commit 694411f1 authored by Gabriel Clark's avatar Gabriel Clark
Browse files

Changed input box styling.

parent 65572495
Branches
Tags
No related merge requests found
...@@ -17,6 +17,13 @@ ...@@ -17,6 +17,13 @@
padding-right: 20px; padding-right: 20px;
} }
.selector {
border-color: rgba(255 255 255 / 0%);
border-radius: 5px;
}
.inputField { .inputField {
border-color: rgba(255 255 255 / 0%);
border-radius: 5px;
max-width: 75%; max-width: 75%;
} }
...@@ -60,7 +60,7 @@ export function UnitSelector(props) { ...@@ -60,7 +60,7 @@ export function UnitSelector(props) {
<div> <div>
<form onSubmit={handleSubmit}> <form onSubmit={handleSubmit}>
<div className="select-container"> <div className="select-container">
<select name="units" onChange={handleChange}> <select className="selector" name="units" onChange={handleChange}>
{unitSelectorOptions.map((option) => {unitSelectorOptions.map((option) =>
<option value={option.value}>{option.label}</option>)} <option value={option.value}>{option.label}</option>)}
</select> </select>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment