initial commit (long overdue)

This commit is contained in:
Alistair Campbell
2023-05-17 20:44:36 -04:00
commit 72184f07f2
32 changed files with 17274 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
<script setup>
import { Icon } from '@iconify/vue'
</script>
<script>
export const Alert = {
name: 'Alert',
props: {
icon: String,
title: String,
message: String
}
}
</script>
<template>
<div class="alert">
<div class="alertHead">
<p>
<Icon icon="carbon:warning" />
</p>
<h2>{{title}}</h2>
</div>
<p>{{message}}</p>
</div>
</template>
<style>
.alert {
background-color: #e0c422;
color: var(--background-secorndary);
display: flex;
flex-direction: column;
max-width: 800px;
margin: 20px auto;
}
.alertHead {
display: flex;
flex-direction: row;
align-items: center;
}
.alertHead p {
display: flex;
font-size: 35px;
margin: 10px;
}
.alertHead h2 {
display: flex;
}
</style>

View File

@@ -0,0 +1,18 @@
<template>
<div class="card">
</div>
</template>
<style>
.card {
background-color: #ffffff;
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>