4aba9b59
wwk
1
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<template>
<div class="sidebar-logo-container">
<router-link class="sidebar-logo-link" to="/">
<img src="@/assets/images/antis.png" class="sidebar-logo" />
</router-link>
</div>
</template>
<script>
export default {
name: 'SidebarLogo'
}
</script>
<style lang="scss" scoped>
.sidebar-logo-container {
position: relative;
width: 100%;
height: 60px;
line-height: 60px;
background: #031e39;
text-align: center;
overflow: hidden;
border-bottom: 1px solid #031e39;
.sidebar-logo-link {
height: 100%;
width: 100%;
.sidebar-logo {
height: 60px;
width: auto;
}
}
}
</style>
|