File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
components/WorkspacesPage Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change
1
+ import { TextField } from "@material-ui/core"
1
2
import Button from "@material-ui/core/Button"
2
3
import { makeStyles } from "@material-ui/core/styles"
3
4
import Table from "@material-ui/core/Table"
@@ -28,6 +29,7 @@ export const WorkspacesPage: React.FC = () => {
28
29
< Margins >
29
30
< img className = { styles . boxes } alt = "boxes" src = "/boxes.png" />
30
31
< div className = { styles . actions } >
32
+ < TextField placeholder = "Search all workspaces" />
31
33
< Button color = "primary" > Create Workspace</ Button >
32
34
</ div >
33
35
< Table >
Original file line number Diff line number Diff line change @@ -55,5 +55,19 @@ export const getOverrides = (palette: PaletteOptions) => {
55
55
} ,
56
56
} ,
57
57
} ,
58
+ MuiInputBase : {
59
+ root : {
60
+ background : palette . background ?. paper ,
61
+ borderRadius : 2 ,
62
+ } ,
63
+ } ,
64
+ MuiOutlinedInput : {
65
+ root : {
66
+ borderColor : palette . divider ,
67
+ "&:hover > .MuiOutlinedInput-notchedOutline" : {
68
+ borderColor : palette . divider ,
69
+ } ,
70
+ } ,
71
+ } ,
58
72
}
59
73
}
You can’t perform that action at this time.
0 commit comments