@redseed/redseed-ui-vue3 2.17.1 → 2.17.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -11,6 +11,11 @@ const showMetaModal = ref(false)
|
|
|
11
11
|
<div v-if="$slots.title"
|
|
12
12
|
class="rsui-page-heading__title"
|
|
13
13
|
>
|
|
14
|
+
<div v-if="$slots.avatar"
|
|
15
|
+
class="rsui-page-heading__avatar"
|
|
16
|
+
>
|
|
17
|
+
<slot name="avatar"></slot>
|
|
18
|
+
</div>
|
|
14
19
|
<h1>
|
|
15
20
|
<slot name="title"></slot>
|
|
16
21
|
</h1>
|
|
@@ -87,7 +92,7 @@ const showMetaModal = ref(false)
|
|
|
87
92
|
@apply lg:flex-row lg:space-y-0 lg:items-center;
|
|
88
93
|
}
|
|
89
94
|
&__title {
|
|
90
|
-
@apply pr-2;
|
|
95
|
+
@apply pr-2 flex flex-row items-center;
|
|
91
96
|
h1 {
|
|
92
97
|
@apply text-2xl font-bold;
|
|
93
98
|
@apply lg:mr-4;
|
|
@@ -115,5 +120,8 @@ const showMetaModal = ref(false)
|
|
|
115
120
|
@apply hidden;
|
|
116
121
|
@apply lg:flex space-x-4;
|
|
117
122
|
}
|
|
123
|
+
&__avatar {
|
|
124
|
+
@apply size-12 mr-3; // Added margin-right
|
|
125
|
+
}
|
|
118
126
|
}
|
|
119
127
|
</style>
|