Browse Source

box-sizing

Artur Paikin 8 years ago
parent
commit
2b5271c224
1 changed files with 5 additions and 2 deletions
  1. 5 2
      src/scss/_common.scss

+ 5 - 2
src/scss/_common.scss

@@ -2,11 +2,14 @@
 * General Uppy styles that apply to everything inside the .Uppy container
 */
 
-.Uppy,
-.Uppy * {
+.Uppy {
   box-sizing: border-box;
 }
 
+.Uppy *, .Uppy *:before, .Uppy *:after {
+  box-sizing: inherit;
+}
+
 .UppyIcon {
   max-width: 100%;
   max-height: 100%;