summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters/agents/components/activity_history_item.vue
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/clusters/agents/components/activity_history_item.vue')
-rw-r--r--app/assets/javascripts/clusters/agents/components/activity_history_item.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/assets/javascripts/clusters/agents/components/activity_history_item.vue b/app/assets/javascripts/clusters/agents/components/activity_history_item.vue
index 7792d89a575..ed11fe1130d 100644
--- a/app/assets/javascripts/clusters/agents/components/activity_history_item.vue
+++ b/app/assets/javascripts/clusters/agents/components/activity_history_item.vue
@@ -45,8 +45,8 @@ export default {
};
</script>
<template>
- <history-item :icon="eventDetails.eventTypeIcon" class="gl-my-0! gl-pr-0!">
- <strong>
+ <history-item :icon="eventDetails.eventTypeIcon" class="gl-my-0! gl-px-0! gl-pb-0!">
+ <strong class="gl-pl-3 gl-font-lg">
<gl-sprintf :message="eventDetails.title"
><template v-if="eventDetails.titleIcon" #titleIcon
><gl-icon
@@ -61,15 +61,15 @@ export default {
</strong>
<template #body>
- <p class="gl-mt-2 gl-mb-0 gl-pb-2" :class="bodyClass">
+ <p class="gl-mt-2 gl-mb-0 gl-ml-3 gl-pb-3 gl-text-secondary" :class="bodyClass">
<gl-sprintf :message="eventDetails.body">
<template #userName>
- <span class="gl-font-weight-bold">{{ eventDetails.user.name }}</span>
+ <span class="gl-font-weight-bold gl-text-body">{{ eventDetails.user.name }}</span>
<gl-link :href="eventDetails.user.webUrl">@{{ eventDetails.user.username }}</gl-link>
</template>
<template #strong="{ content }">
- <span class="gl-font-weight-bold"> {{ content }} </span>
+ <span class="gl-font-weight-bold gl-text-body"> {{ content }} </span>
</template>
</gl-sprintf>
<time-ago-tooltip :time="eventDetails.recordedAt" />