File tree Expand file tree Collapse file tree
src/cloud/components/Modal/contents/SmartView Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import Button, {
44 LoadingButton ,
55} from '../../../../../design/components/atoms/Button'
66import ButtonGroup from '../../../../../design/components/atoms/ButtonGroup'
7+ import Flexbox from '../../../../../design/components/atoms/Flexbox'
78import Switch from '../../../../../design/components/atoms/Switch'
89import Form from '../../../../../design/components/molecules/Form'
910import FormRow from '../../../../../design/components/molecules/Form/templates/FormRow'
@@ -120,16 +121,18 @@ const SmartViewForm = ({
120121 </ div >
121122 </ FormRowItem >
122123 < FormRowItem className = 'form__row__item--shrink' >
123- < Switch
124- id = 'shared-custom-switch'
125- checked = { makingPrivate }
126- onChange = { ( checked ) => {
127- setMakingPrivate ( checked )
128- } }
129- height = { 20 }
130- width = { 30 }
131- handleSize = { 14 }
132- />
124+ < Flexbox justifyContent = 'flex-end' >
125+ < Switch
126+ id = 'shared-custom-switch'
127+ checked = { makingPrivate }
128+ onChange = { ( checked ) => {
129+ setMakingPrivate ( checked )
130+ } }
131+ height = { 20 }
132+ width = { 30 }
133+ handleSize = { 14 }
134+ />
135+ </ Flexbox >
133136 </ FormRowItem >
134137 </ FormRow >
135138 </ >
You can’t perform that action at this time.
0 commit comments