mirror of https://github.com/Kylart/KawAnime.git
27 lines
407 B
Vue
27 lines
407 B
Vue
<template lang="pug">
|
|
div#container
|
|
span.text.white--text Development mode
|
|
</template>
|
|
|
|
<style scoped>
|
|
#container
|
|
{
|
|
height: 24px;
|
|
width: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: 100;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.text
|
|
{
|
|
font-size: 12px;
|
|
font-style: italic;
|
|
font-weight: 300;
|
|
letter-spacing: 1px;
|
|
}
|
|
</style>
|