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