Files
17th-Site-Front-End-V2/17th Website/src/components/cards/clickableCard.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>