mirror of
https://github.com/LucasVbr/own-workspace.git
synced 2026-05-19 10:53:19 +00:00
27 lines
365 B
Vue
27 lines
365 B
Vue
<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> |