ultrawidify/src/csui/LoggerUi.vue

54 lines
1.0 KiB
Vue
Raw Normal View History

2020-01-31 01:03:06 +01:00
<template>
2020-02-01 17:48:31 +01:00
<div v-if="showLoggerUi">
<div>
<div>DEFORESTATOR 5000</div>
<div>Iron Legion's finest logging tool</div>
2020-01-31 01:03:06 +01:00
</div>
2020-02-01 17:48:31 +01:00
<div>
<div>
2020-01-31 01:03:06 +01:00
logger config panel is here
</div>
2020-02-01 17:48:31 +01:00
<div class="test-class">
2020-01-31 01:03:06 +01:00
logger results will go here
</div>
</div>
2020-02-01 17:48:31 +01:00
<div>
2020-01-31 01:03:06 +01:00
button row is here
</div>
</div>
</template>
<script>
export default {
data() {
return {
showLoggerUi: true,
ghettoCss: {
2020-02-01 17:48:31 +01:00
2020-01-31 01:03:06 +01:00
}
}
}
}
</script>
<style lang="scss" scoped>
2020-02-01 17:48:31 +01:00
@import url('../res/css/colors.scss');
@import url('../res/css/font/overpass.css');
@import url('../res/css/font/overpass-mono.css');
@import url('../res/css/common.scss');
@import url('../res/css/flex.css');
.rootWindow {
position: fixed !important;
top: 5vh !important;
left: 5vw !important;
width: 90vw !important;
height: 90vh !important;
z-index: 999999 !important;
background-color: rgba(18,17,15,0.9) !important;
color: #f1f1f1 !important;
font-size: 14px !important;
}
2020-01-31 01:03:06 +01:00
</style>