Skip to content
This repository was archived by the owner on Jan 27, 2025. It is now read-only.

Commit ca731cb

Browse files
authored
Merge pull request #356 from storyblok/fix/on-947-app-sidebar-icon
fix(ON-947): app sidebar icon
2 parents b5ae410 + 18b3da5 commit ca731cb

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

src/components/Sidebar/components/ListItem.vue

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
:icon-tooltip-label="iconTooltipLabel"
2424
:has-separator="hasSeparator"
2525
:label="label"
26+
:image="image"
2627
/>
2728
</router-link>
2829
<component
@@ -44,6 +45,7 @@
4445
:icon-tooltip-label="iconTooltipLabel"
4546
:has-separator="hasSeparator"
4647
:label="label"
48+
:image="image"
4749
/>
4850
</component>
4951
<slot />
@@ -131,6 +133,10 @@ export default {
131133
type: Boolean,
132134
default: false,
133135
},
136+
image: {
137+
type: String,
138+
default: null,
139+
},
134140
},
135141
136142
computed: {

src/components/Sidebar/components/ListItemInner.vue

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
<template>
22
<div class="sb-sidebar-link-inner">
33
<SbAvatar v-if="hasAvatar" v-bind="avatar" />
4+
<img
5+
v-else-if="image"
6+
:src="image"
7+
width="22"
8+
height="22"
9+
class="sb-sidebar-sidebar-icon"
10+
/>
411

5-
<SbIcon v-else-if="hasIcon" :size="iconSize" :name="icon" />
12+
<SbIcon v-else-if="icon" :size="iconSize" :name="icon" />
613

714
<div v-if="hasSeparator" class="sb-separator"></div>
815

@@ -77,16 +84,16 @@ export default {
7784
type: Boolean,
7885
default: false,
7986
},
87+
image: {
88+
type: String,
89+
default: null,
90+
},
8091
},
8192
8293
computed: {
8394
hasAvatar() {
8495
return this.avatar !== null
8596
},
86-
87-
hasIcon() {
88-
return this.icon
89-
},
9097
},
9198
}
9299
</script>

src/components/Sidebar/sidebar.scss

+6-2
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,17 @@
158158
.sb-sidebar-item--child {
159159
margin: 1px 0 0;
160160

161+
&:first-of-type {
162+
padding-left: 37px;
163+
}
164+
161165
&.sb-sidebar-item--active {
162166
.sb-sidebar-link {
163167
background-color: #373f57;
164168
}
165169
}
166170

167171
.sb-sidebar-link {
168-
padding-left: 32px;
169172

170173
&:hover {
171174
background-color: #373f57;
@@ -193,7 +196,8 @@
193196
@include activeItemState();
194197
}
195198

196-
.sb-icon {
199+
.sb-icon,
200+
.sb-sidebar-sidebar-icon {
197201
margin-right: 12px;
198202
}
199203

0 commit comments

Comments
 (0)