mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2026-03-01 12:44:23 +00:00
* rename test:lint:eslint to lint and update eslint-config-it4c package * simplify config and make it ts * jest update & ts * suppress server logging output in tests * remove test node_env as it is default for jest * use eslint-config-it4c * packages = module * fix tailwind as ts * eslitn autofix * more fixes * tsconfig & some eslint rules * fixes * more fixes * more exceptions * do not allow warnings * fix config * ignore vuepress generated configs * ts include fix
32 lines
677 B
Vue
32 lines
677 B
Vue
<template>
|
|
<div class="grid grid-cols-12 items-start mb-16">
|
|
<div class="col-span-3 text-right pr-8">
|
|
<span class="text-5xl sm:text-6xl font-bold highlight-number">{{
|
|
number.padStart(2, '0')
|
|
}}</span>
|
|
</div>
|
|
<div class="col-span-9 pt-0 sm:pt-2">
|
|
<h3 class="text-xl font-semibold mb-2">
|
|
{{ title }}
|
|
</h3>
|
|
<p class="text-gray-600 dark:text-gray-300">
|
|
{{ description }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
number: string
|
|
title: string
|
|
description: string
|
|
}>()
|
|
</script>
|
|
|
|
<style>
|
|
.highlight-number {
|
|
color: var(--highlight-color);
|
|
}
|
|
</style>
|