diff options
Diffstat (limited to 'components')
| -rw-r--r-- | components/navbar.tsx | 3 | ||||
| -rw-r--r-- | components/ui.tsx | 2 | 
2 files changed, 3 insertions, 2 deletions
diff --git a/components/navbar.tsx b/components/navbar.tsx index c62965a..275de07 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -26,7 +26,6 @@ export class NavBar extends Component {  	constructor(props: {}) {  		super(props); -  	}  	render () { @@ -55,7 +54,7 @@ export class NavBar extends Component {  			<a href="/" style={NavBarItemStyle}><Home/></a>  			<a href="/game" style={NavBarItemStyle}><VideogameAssetIcon/></a>  			<a href="/" style={NavBarItemStyle}><ExtensionIcon/></a> -			<a href="/" style={NavBarItemStyle}><SearchIcon/></a> +			<a href="/search" style={NavBarItemStyle}><SearchIcon/></a>  			<div style={{  				position: "absolute", diff --git a/components/ui.tsx b/components/ui.tsx index f57a90a..3fb3c86 100644 --- a/components/ui.tsx +++ b/components/ui.tsx @@ -94,6 +94,7 @@ export function Input(props: {  	min?: number;  	max?: number;  	value?: string|number; +	dark?: boolean;  }) {  	return <input  	id={props.id} @@ -102,6 +103,7 @@ export function Input(props: {  	placeholder={props.label}  	spellCheck={false}  	defaultValue={props.value ? String(props.value) : ""} +	className={props.dark ? "dark" : "light"}  	style={{  		padding: 12,  		border: 0,  |