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

2
composer.lock generated
View File

@@ -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"
} }

View File

@@ -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>

View File

@@ -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) {