registerguard / bulldog

The official 2013 registerguard.com theme.
http://registerguard.com
1 stars 1 forks source link

Box sizing, border-box! #159

Open mhulse opened 11 years ago

mhulse commented 11 years ago

Need to add:

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
mhulse commented 11 years ago

Need to remove:

input[type="search"] {
    -moz-box-sizing: content-box;
}

... it's affecting search box styling.