This commit is contained in:
benson
2023-05-10 20:01:31 +08:00
parent e24e74c538
commit e8cc6d9841
3 changed files with 7 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
<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>
</button>
<button class="bs-spinner" v-if="loading">
@@ -38,11 +38,13 @@ export default {
},
};
</script>
<style lang="scss">
<style lang="scss" scoped>
@import "../css/bootstrap.scss";
@import "../css/btn.scss";
.check-button {
.button-vue {
@extend .btn;
@include button-variant(#212529,#212529, #fff);
border-radius: 0em;
}
</style>

View File

@@ -31,6 +31,7 @@ export default {
background-color: $bg-color;
font-size: medium;
color: #181616;
border-radius: 0em;
}
}
@media only screen and (max-width: 1024px) {