bugfixes
This commit is contained in:
2
composer.lock
generated
2
composer.lock
generated
@@ -958,5 +958,5 @@
|
|||||||
"prefer-lowest": false,
|
"prefer-lowest": false,
|
||||||
"platform": [],
|
"platform": [],
|
||||||
"platform-dev": [],
|
"platform-dev": [],
|
||||||
"plugin-api-version": "2.0.0"
|
"plugin-api-version": "2.2.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<button ref="button" :class="className" v-if="loading ^ 1" @click.prevent="handler">
|
<button ref="button" class="button-vue" :class="className" v-if="loading ^ 1" @click.prevent="handler">
|
||||||
<slot>Download</slot>
|
<slot>Download</slot>
|
||||||
</button>
|
</button>
|
||||||
<button class="bs-spinner" v-if="loading">
|
<button class="bs-spinner" v-if="loading">
|
||||||
@@ -38,11 +38,13 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss">
|
<style lang="scss" scoped>
|
||||||
@import "../css/bootstrap.scss";
|
@import "../css/bootstrap.scss";
|
||||||
@import "../css/btn.scss";
|
@import "../css/btn.scss";
|
||||||
|
|
||||||
.check-button {
|
.button-vue {
|
||||||
@extend .btn;
|
@extend .btn;
|
||||||
|
@include button-variant(#212529,#212529, #fff);
|
||||||
|
border-radius: 0em;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ export default {
|
|||||||
background-color: $bg-color;
|
background-color: $bg-color;
|
||||||
font-size: medium;
|
font-size: medium;
|
||||||
color: #181616;
|
color: #181616;
|
||||||
|
border-radius: 0em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media only screen and (max-width: 1024px) {
|
@media only screen and (max-width: 1024px) {
|
||||||
|
|||||||
Reference in New Issue
Block a user