File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
site/src/pages/DeploymentSettingsPage/AppearanceSettingsPage Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { type Interpolation , type Theme , useTheme } from "@emotion/react" ;
2
- import { Button } from "@mui/material " ;
2
+ import { Button } from "components/Button/Button " ;
3
3
import DialogActions from "@mui/material/DialogActions" ;
4
4
import TextField from "@mui/material/TextField" ;
5
5
import type { BannerConfig } from "api/typesGenerated" ;
@@ -119,9 +119,14 @@ export const AnnouncementBannerDialog: FC<AnnouncementBannerDialogProps> = ({
119
119
} }
120
120
/>
121
121
) }
122
- < Button onClick = { ( ) => setShowHuePicker ( ( it ) => ! it ) } >
123
- Show { showHuePicker ? "palette" : "slider" }
124
- </ Button >
122
+ < div >
123
+ < Button
124
+ variant = "outline"
125
+ onClick = { ( ) => setShowHuePicker ( ( it ) => ! it ) }
126
+ >
127
+ Show { showHuePicker ? "palette" : "slider" }
128
+ </ Button >
129
+ </ div >
125
130
</ Stack >
126
131
</ div >
127
132
</ Stack >
You can’t perform that action at this time.
0 commit comments