style: change apply button color

Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com>
(cherry picked from commit c4e9a89ba5720083e8163a66602d250f4b131758)
This commit is contained in:
Yi-Ya Chen 2025-01-20 15:55:17 +08:00 committed by Mergify
parent 89b43060df
commit cf6d44601e

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;