MInor bugs fixed, removed default white background

This commit is contained in:
euvl
2017-06-20 13:54:36 +01:00
parent 2534bc77c9
commit a80e966dce
4 changed files with 14 additions and 26 deletions

View File

@@ -75,6 +75,7 @@
return value >= 0
}
},
/*
adaptiveMaxWidth: {
type: Number,
default: 1,
@@ -89,6 +90,7 @@
return value > 0 && value <= 1
}
},
*/
width: {
type: Number,
default: 600,
@@ -120,7 +122,7 @@
type: Number,
default: 0.5,
validator (value) {
value >= 0 && value <= 1
return value >= 0 && value <= 1
}
}
},
@@ -389,11 +391,10 @@
position: relative;
overflow: hidden;
box-sizing: border-box;
background-color: white;
}
.v--modal {
background: white;
background-color: white;
text-align: left;
border-radius: 3px;
box-shadow: 0 20px 60px -2px rgba(27, 33, 58, .4);