59 lines
1.1 KiB
Vue
59 lines
1.1 KiB
Vue
<template>
|
|
<div class="container">
|
|
<div class="logo-wrapper vertical-text" id="logo-wrapper">
|
|
<div class="logp-image-container"><img class="logo" src="../../assets/logo.svg" alt=""> </div>
|
|
</div>
|
|
</div>
|
|
<div class="divider"></div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
</script>
|
|
|
|
<style scoped lang="scss" >
|
|
.container {
|
|
width: 60px;
|
|
height: 60px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: background-color 1s ease;
|
|
|
|
}
|
|
|
|
.logo-wrapper {
|
|
width: 80%;
|
|
height: 80%;
|
|
}
|
|
|
|
.vertical-text {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
font-size: var(--logo-txt-size);
|
|
color: transparent;
|
|
|
|
}
|
|
|
|
|
|
.logp-image-container{
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
}
|
|
.logo{
|
|
width: 30px;
|
|
height: 30px;
|
|
background-image: url('../../assets/logo.svg');
|
|
background-size: 100% 100%;
|
|
}
|
|
.divider{
|
|
margin: auto;
|
|
margin-top: 20px;
|
|
width: 60%;
|
|
border-bottom: 0.5px solid var(--txt-color);
|
|
opacity: 0.2;
|
|
}
|
|
</style>
|