UI + widgets

This commit is contained in:
RemiSaurel
2022-08-15 23:11:40 +02:00
parent f4727ef8d8
commit 5b0813e2a2
3 changed files with 92 additions and 44 deletions
+27
View File
@@ -0,0 +1,27 @@
<template>
<div id="container-stats">
NEWS COMING SOON 👀
</div>
</template>
<script>
export default {
name: "Stats",
}
</script>
<style scoped>
#container-stats {
background: #504746;
width: 100%;
border-radius: 16px;
padding: 10% 12px 8px 12px;
color: white;
text-align: center;
vertical-align: center;
font-size: 24px;
}
</style>