You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.8 KiB
Vue

<template>
<div class="asciiLogoWrapper">
<pre class="asciiLogo">
</pre>
</div>
</template>
<script>
export default {
name: "ASCIILogo"
}
</script>
<style scoped>
.asciiLogoWrapper{
width: 100%;
display: flex;
justify-content: center;
}
.asciiLogo {
color: #399d9d;
background-color: transparent;
width: fit-content;
font-size: .8rem;
}
@media screen and (max-width: 900px) {
.asciiLogo {
font-size: calc(1.2vw);
}
}
</style>