Skip to content

Commit 3a71d6b

Browse files
committed
Add '#WhatNow' tag and styles to home page
Insert a new <p class="whatnow-tag">#WhatNow</p> above the welcome heading in resources/assets/js/pages/home.vue and add corresponding .whatnow-tag CSS (font-size: 1.1rem, font-weight: 600, color: #E8473F, margin-bottom: 0.25rem) to visually highlight the label.
1 parent 83310b9 commit 3a71d6b

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

resources/assets/js/pages/home.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<b-container fluid class="home-page">
33
<b-row class="p-4" v-if="user">
44
<b-col cols="12">
5+
<p class="whatnow-tag">#WhatNow</p>
56
<h2 class="mb-3">
67
{{ $t('home_pods.wellcome') }}
78
{{ user.data.user_profile.first_name }}!
@@ -287,6 +288,13 @@ export default {
287288
}
288289
</script>
289290
<style>
291+
.whatnow-tag {
292+
font-size: 1.1rem;
293+
font-weight: 600;
294+
color: #E8473F;
295+
margin-bottom: 0.25rem;
296+
}
297+
290298
.button-container {
291299
display: flex;
292300
justify-content: space-between;

0 commit comments

Comments
 (0)