Skip to content

Commit 1206ecd

Browse files
committed
Fix content within the header-extra slot of ipl-expanding-space sometimes being invisible
1 parent 7b94ddf commit 1206ecd

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 3.0.1
2+
3+
- Fix content within the header-extra slot of ipl-expanding-space sometimes being invisible
4+
15
# 3.0.0
26

37
## Breaking

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iplsplatoon/vue-components",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "Vue components for internal Inkling Performance Labs utilities.",
55
"homepage": "https://github.com/IPLSplatoon/vue-components",
66
"repository": "https://github.com/IPLSplatoon/vue-components",

src/components/iplExpandingSpace.vue

+6-2
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,12 @@ export default defineComponent({
163163
}
164164
}
165165
166-
> .header-extra:not(:empty) {
167-
margin-left: 8px;
166+
> .header-extra {
167+
z-index: 1;
168+
169+
&:not(:empty) {
170+
margin-left: 8px;
171+
}
168172
}
169173
170174
.ipl-expanding-space__title {

0 commit comments

Comments
 (0)