You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Modules/Authentication/components/Header.vue

30 lines
473 B

<template>
<div class="Header">
<div class="Logo">
WILLA ENGINE
</div>
</div>
</template>
<script>
export default {
components: {
},
}
</script>
<style lang="scss" scoped>
.Header {
position: fixed;
width: 100%;
text-align: center;
}
.Logo {
letter-spacing: 15px;
color: #fff;
position: absolute;
top: 20px;
right: calc( 50% - 150px );
}
</style>