smooth-code / smooth-ui

Modern React UI library 💅👩‍🎤🍭

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Input overflow

jacekschae opened this issue · comments

Hello,

I updated the version of the package that shows the Form elements and it seems like there input overflow. Seems like they are longer than all the other elements and they overflow the parent

https://codesandbox.io/s/jjzvqzq31w

Am I doing something wrong here or is this a bug?

Hello @jacekschae, you don't have the correct box-sizing, you can inject global normalize or you can add:

* {
    box-sizing: border-box;
}

So no bug!

Thanks for pointing it out and your reply!