File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
portal-ui/src/screens/Console/Users Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ import AddMembersToGroup from "../../../icons/AddMembersToGroupIcon";
33
33
import { encodeURLString } from "../../../common/utils" ;
34
34
import { setModalErrorSnackMessage } from "../../../systemSlice" ;
35
35
import { useAppDispatch } from "../../../store" ;
36
+ import Box from "@mui/material/Box" ;
36
37
37
38
const styles = ( theme : Theme ) =>
38
39
createStyles ( {
@@ -171,12 +172,19 @@ const ChangeUserGroups = ({
171
172
} }
172
173
/>
173
174
</ Grid >
174
- < Grid item xs = { 12 } className = { classes . buttonContainer } >
175
+ < Box
176
+ sx = { {
177
+ display : "flex" ,
178
+ gap : 2 ,
179
+ alignItems : "center" ,
180
+ justifyContent : "flex-end" ,
181
+ width : "100%" ,
182
+ } }
183
+ >
175
184
< Button
176
185
id = { "clear-change-user-groups" }
177
186
type = "button"
178
187
variant = "regular"
179
- style = { classes . spacerRight }
180
188
onClick = { resetForm }
181
189
label = { "Clear" }
182
190
/>
@@ -188,7 +196,7 @@ const ChangeUserGroups = ({
188
196
disabled = { addLoading || ! sendEnabled }
189
197
label = { "Save" }
190
198
/>
191
- </ Grid >
199
+ </ Box >
192
200
{ addLoading && (
193
201
< Grid item xs = { 12 } >
194
202
< LinearProgress />
You can’t perform that action at this time.
0 commit comments