Some CSS changes

This commit is contained in:
Greg Shuflin 2022-04-29 23:34:46 -07:00
parent 408635f255
commit e7b5d532f5
2 changed files with 14 additions and 3 deletions

View File

@ -1,6 +1,11 @@
body {
background-color: #f0f0b8;
font-size: 14pt;
font-size: 18pt;
font-family: "Biwa";
}
input {
font-family: "Biwa";
}
main {
@ -26,10 +31,16 @@ input {
width: 100%;
}
.searchDropdown {
font-size: 22px;
font-family: "Biwa";
}
.searchButton {
padding: 5px;
margin: 10px;
font-dize: 22px;
font-size: 22px;
font-family: "Biwa";
}
.searchResult {

View File

@ -157,7 +157,7 @@ const App = (_props) => {
const conlangs = [Conlang.Saimiar, Conlang.Elesu, Conlang.Tukvaysi, Conlang.Juteyuji];
const langSelectDropdown = (
<select value={conlang} onChange={ handleLangChange }>
<select className="searchDropdown" value={conlang} onChange={ handleLangChange }>
{conlangs.map((conlang) => <option value={conlang} key={conlang}>{renderConlang(conlang)}</option>)}
</select>
);