You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the screen of my Surface Pro 3 everything is as I want, but when I try to open page on my phone (Nokia Lumia 930...don't judge me, my Android phone is on warranty service), height of the elements seems like too small. Shouldn't responsive means that on smaller screens, elements should be bigger?
Here is what I have:
importReactfrom'react';import{InputGroup,InputGroupAddon,Input,Button}from'reactstrap';import{Grid,Row,Col}from'react-flexbox-grid';classLoginextendsReact.Component{render(){return(<Grid>{/*Row for username*/}<Rowxs="6"><Colxs={3}sm={3}/><Colxs={6}sm={6}><InputGroupid="loginGroup"><InputGroupAddonaddonType="prepand">
@
</InputGroupAddon><Inputplaceholder="username"/></InputGroup></Col><Colxs={3}sm={3}/></Row><br/>{/*Row for password*/}<Row><Colxs={3}sm={3}/><Colxs={6}sm={6}><InputGroupid="loginGroup"><InputGroupAddonaddonType="prepand">
....
</InputGroupAddon><Inputplaceholder="password"type="password"/></InputGroup></Col><Colxs={3}sm={3}/></Row><br/><RowclassName="text-center"><Colxs={3}sm={3}/><Colxs={6}sm={6}><Buttoncolor="primary">Login</Button></Col><Colxs={3}sm={3}/></Row></Grid>);}}exportdefaultLogin;
Can I change height of the Row component trough some property, or do I need to write some magic in CSS? (Which I want to avoid)
Thanks
The text was updated successfully, but these errors were encountered:
Hello,
On the screen of my Surface Pro 3 everything is as I want, but when I try to open page on my phone (Nokia Lumia 930...don't judge me, my Android phone is on warranty service), height of the elements seems like too small. Shouldn't responsive means that on smaller screens, elements should be bigger?
Here is what I have:
Can I change height of the Row component trough some property, or do I need to write some magic in CSS? (Which I want to avoid)
Thanks
The text was updated successfully, but these errors were encountered: