28d3f800 by 任超

style:头部样式

1 parent d106a60b
......@@ -117,6 +117,7 @@
.svg-icon {
width: 2.5em;
height: 2.5em;
transition: all 0.3s;
}
.iconName {
......@@ -184,6 +185,10 @@
li:hover {
border: 1px solid #ffffff;
border-radius: 5px;
.icon {
transform: scale(1.3);
}
}
}
}
\ No newline at end of file
......
......@@ -5,7 +5,7 @@
<!-- 左侧业务功能按钮 -->
<ul>
<li @click="operation(index, item)" v-for="(item, index) in leftButtonList" :key="index">
<svg-icon :icon-class="item.icon" />
<svg-icon class="icon" :icon-class="item.icon" />
<span class="iconName">{{ item.name }}</span>
</li>
</ul>
......