Skip to content

Commit

Permalink
fix: correct the default daemon background
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
  • Loading branch information
andrey18106 committed Sep 6, 2024
1 parent 876a7e6 commit d63b9ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/DaemonConfig/DaemonConfig.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<template>
<div class="daemon" :class="{'daemon-default': isDefault }">
<div class="daemon">
<NcListItem
:name="itemTitle"
:details="isDefault ? t('app_api', 'Default') : ''"
:force-display-actions="true"
:counter-number="daemon.exAppsCount"
:class="{'daemon-default': isDefault }"
counter-type="highlighted"
@click="showDaemonConfigDetailsModal(daemon)">
<template #subname>
Expand Down Expand Up @@ -194,9 +195,8 @@ export default {
}
</script>

<style scoped lang="scss">
.daemon-default {
<style lang="scss">
.daemon-default > .list-item {
background-color: var(--color-background-dark);
border-radius: var(--border-radius-pill);
}
</style>

0 comments on commit d63b9ab

Please sign in to comment.