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

Changed input box styling.

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