Arno Kaimbacher
87e9314b00
Some checks failed
CI Pipeline / japa-tests (push) Failing after 51s
- added lime color inside tailwind.config.js - added some utilities scripts needed for components - npm updates - changed postcss.config.js for nesting css styles - added about function to NavBar.vue
96 lines
2.4 KiB
Vue
96 lines
2.4 KiB
Vue
<!--
|
|
- @copyright Copyright (c) 2023 Arno Kaimbacher <arno.kaimbacher@outlook.at>
|
|
-
|
|
- @author Arno Kaimbacher <arno.kaimbacher@outlook.at>
|
|
-
|
|
- @license GNU AGPL version 3 or any later version
|
|
-
|
|
- This program is free software: you can redistribute it and/or modify
|
|
- it under the terms of the GNU Affero General Public License as
|
|
- published by the Free Software Foundation, either version 3 of the
|
|
- License, or (at your option) any later version.
|
|
-
|
|
- This program is distributed in the hope that it will be useful,
|
|
- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
- GNU Affero General Public License for more details.
|
|
-
|
|
- You should have received a copy of the GNU Affero General Public License
|
|
- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-
|
|
-->
|
|
<template>
|
|
<component :is="isLink ? 'a' : 'div'" :href="href || undefined" class="card" :class="{ 'card--link': isLink }"
|
|
:target="!isLink ? undefined : '_blank'" :rel="!isLink ? undefined : 'noreferrer'">
|
|
<div v-if="!isLink" class="card__icon">
|
|
<slot />
|
|
</div>
|
|
<div class="card__text">
|
|
<h3 class="text-base text-ellipsis card__heading">
|
|
{{ title }}
|
|
</h3>
|
|
<p>{{ subtitle }}</p>
|
|
</div>
|
|
</component>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Card',
|
|
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
|
|
href: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
|
|
subtitle: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
isLink() {
|
|
return this.href !== ''
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="css" scoped>
|
|
.card {
|
|
display: flex;
|
|
max-width: 250px;
|
|
box-sizing: border-box;
|
|
height: fit-content;
|
|
}
|
|
|
|
.card__icon {
|
|
display: flex;
|
|
flex: 0 0 44px;
|
|
align-items: center;
|
|
}
|
|
|
|
.card__heading {
|
|
font-weight: bold;
|
|
margin: 0;
|
|
}
|
|
|
|
.card--link {
|
|
box-shadow: 0px 0px 10px 0px var(--color-box-shadow);
|
|
border-radius: var(--border-radius-large);
|
|
padding: calc(var(--default-grid-baseline) * 4);
|
|
}
|
|
|
|
.card--link:focus-visible {
|
|
outline: 2px solid var(--color-main-text);
|
|
box-shadow: 0 0 0 4px var(--color-main-background);
|
|
}
|
|
</style>
|