KawAnime/components/env.vue

35 lines
497 B
Vue
Raw Normal View History

<template lang="pug">
2017-08-03 10:25:01 +00:00
div.c
div#container
span.text.white--text Development mode
</template>
<style scoped>
2017-08-03 10:25:01 +00:00
.c
{
width: 100%;
display: flex;
justify-content: center;
}
#container
{
height: 24px;
2017-08-03 10:25:01 +00:00
width: 50%;
position: fixed;
top: 0;
2017-08-03 10:25:01 +00:00
z-index: 110;
display: flex;
justify-content: center;
align-items: center;
}
.text
{
font-size: 12px;
font-style: italic;
font-weight: 300;
letter-spacing: 1px;
}
</style>