Stopped using sass (as far as css file are tiny as they are), release 1.0.19

This commit is contained in:
euvl
2017-04-27 19:22:39 +03:00
parent b0b33f95cd
commit 31d1a71a3a
5 changed files with 47 additions and 50 deletions

View File

@@ -76,7 +76,7 @@ export default {
}
}
</script>
<style lang="scss">
<style>
.vue-modal-resizer {
display: block;
overflow: hidden;
@@ -88,22 +88,22 @@ export default {
z-index: 9999999;
background: transparent;
cursor: se-resize;
}
&:after {
display: block;
position: absolute;
content: '';
background: transparent;
left: 0;
top: 0;
width: 0;
height: 0;
border-bottom: 10px solid #ddd;
border-left: 10px solid transparent;
}
.vue-modal-resizer::after {
display: block;
position: absolute;
content: '';
background: transparent;
left: 0;
top: 0;
width: 0;
height: 0;
border-bottom: 10px solid #ddd;
border-left: 10px solid transparent;
}
&.clicked:after {
border-bottom: 10px solid #369BE9;
}
.vue-modal-resizer.clicked::after {
border-bottom: 10px solid #369BE9;
}
</style>