24 lines
345 B
Vue
24 lines
345 B
Vue
|
<script setup>
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="aboutbox">
|
||
|
<h1 class="test">Coucou</h1>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.aboutbox {
|
||
|
background-color: rgb(24,24,24);
|
||
|
width: 400px;
|
||
|
display:flex;
|
||
|
justify-content: center;
|
||
|
padding: 40px;
|
||
|
border-radius: 20px;
|
||
|
box-shadow:0 5px 25px #000000;
|
||
|
}
|
||
|
|
||
|
.test{
|
||
|
color: red;
|
||
|
}
|
||
|
</style>
|