style: change apply button color

Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com>
This commit is contained in:
Yi-Ya Chen 2025-01-20 15:55:17 +08:00
parent f2d5172224
commit c4e9a89ba5
No known key found for this signature in database
GPG Key ID: 9A2E6FBD33F68EDE

View File

@ -120,9 +120,7 @@ export default {
</script> </script>
<template> <template>
<Card <Card :show-highlight-border="false">
:show-highlight-border="false"
>
<template #title> <template #title>
<h4 class="text-default-text"> <h4 class="text-default-text">
{{ t('dialog.confirmExecution.title') }} {{ t('dialog.confirmExecution.title') }}
@ -154,7 +152,7 @@ export default {
</button> </button>
<AsyncButton <AsyncButton
mode="apply" mode="apply"
class="btn bg-error ml-10" class="btn bg-primary ml-10"
:disabled="applyDisabled" :disabled="applyDisabled"
@click="apply" @click="apply"
/> />
@ -164,6 +162,10 @@ export default {
</template> </template>
<style lang='scss' scoped> <style lang='scss' scoped>
.modal-container {
max-width: 400px;
}
.actions { .actions {
width: 100%; width: 100%;
text-align: right; text-align: right;