Added timezones
This commit is contained in:
@@ -1,9 +1,14 @@
|
||||
<script setup lang="ts">
|
||||
|
||||
defineProps<{
|
||||
title?: string;
|
||||
blurb?: string;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="glass-box glass glass-border">
|
||||
<h2 v-if="title">{{ title }}</h2>
|
||||
<p v-if="blurb">{{ blurb }}</p>
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
@@ -12,8 +17,19 @@
|
||||
.glass-box {
|
||||
width: 50%;
|
||||
min-height: 50dvh;
|
||||
gap:1em;
|
||||
gap: 1em;
|
||||
padding: 2em;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
p {
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
opacity: 0.7;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user