udpate style to prevent submit button going to new line on small screen - share page

This commit is contained in:
Abhinav-grd 2021-04-29 01:13:31 +05:30
parent 76ee1517d3
commit fe2ea3b929

View file

@ -126,6 +126,7 @@ function CollectionShare(props: Props) {
<Form.Row>
<Form.Group
as={Col}
xs={10}
controlId="formHorizontalEmail"
>
<Form.Control
@ -146,7 +147,7 @@ function CollectionShare(props: Props) {
</Form.Group>
<Form.Group
as={Col}
sm={1}
xs={2}
controlId="formHorizontalEmail"
>
<SubmitButton
@ -184,7 +185,9 @@ function CollectionShare(props: Props) {
</Table>
</>
) : (
<div style={{ marginTop: "12px" }}>{constants.ZERO_SHAREES()}</div>
<div style={{ marginTop: '12px' }}>
{constants.ZERO_SHAREES()}
</div>
)}
</DeadCenter>
</MessageDialog>