17 lines
417 B
Vue
17 lines
417 B
Vue
<template>
|
|
<div class="card">
|
|
<h1 class="bg-gray-dark rounded-xl w-fit p-5">HELLO</h1>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<style>
|
|
.card {
|
|
color: var(--white);
|
|
padding: 0 10px;
|
|
margin: 10px;
|
|
border-radius: 10px;
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
height: fit-content;
|
|
}
|
|
</style> |