mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-02 05:47:14 +02:00
fix travel to s12 on list world map
This commit is contained in:
@@ -4,25 +4,25 @@
|
||||
*/
|
||||
|
||||
import React from "react";
|
||||
import { Select as MuiSelect, ButtonProps, makeStyles } from "@material-ui/core";
|
||||
import { Select as MuiSelect, SelectProps, makeStyles } from "@material-ui/core";
|
||||
import { colors } from "./Theme";
|
||||
|
||||
const useStyles = makeStyles({
|
||||
// Tries to emulate StdButton in buttons.scss
|
||||
root: {
|
||||
backgroundColor: "#000",
|
||||
backgroundColor: "#222",
|
||||
color: colors.primarydark,
|
||||
margin: "5px",
|
||||
padding: "3px 5px",
|
||||
"&:hover": {
|
||||
backgroundColor: "#000",
|
||||
backgroundColor: "#222",
|
||||
},
|
||||
|
||||
borderRadius: 0,
|
||||
},
|
||||
});
|
||||
|
||||
export const Select: React.FC<ButtonProps> = (props: ButtonProps) => {
|
||||
export const Select: React.FC<SelectProps> = (props: SelectProps) => {
|
||||
return (
|
||||
<MuiSelect
|
||||
native
|
||||
|
||||
@@ -10,7 +10,7 @@ import { colors } from "./Theme";
|
||||
const useStyles = makeStyles({
|
||||
// Tries to emulate StdButton in buttons.scss
|
||||
root: {
|
||||
backgroundColor: "#000",
|
||||
backgroundColor: "#222",
|
||||
color: "white",
|
||||
borderRadius: 0,
|
||||
"& .MuiInputBase-input": {
|
||||
|
||||
Reference in New Issue
Block a user