UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 0c50fed0 authored by hunter.congress's avatar hunter.congress
Browse files

Merge branch 'BULL-1229' into 'master'

BULL-1229: Update services page

See merge request !15
parents 4db287e0 7c255b6d
No related branches found
Tags v0.0.43
1 merge request!15BULL-1229: Update services page
src/assets/images/Services/clipboard.png

613 B

src/assets/images/Services/cloud.png

1.14 KiB

src/assets/images/Services/cnap_small_bw.png

2.44 KiB

src/assets/images/Services/document_checkmark.png

467 B

src/assets/images/Services/enterprise_collab_small_bw.png

3.71 KiB

src/assets/images/Services/folder.png

491 B

src/assets/images/Services/reuse_checkmark.png

1.28 KiB

src/assets/images/Services/wrench.png

1 KiB

<template>
<v-card
color="#F4F4F4"
class="pb-6 mx-6"
style="max-width: 600px; min-width: 400px; min-height: 100%"
>
<v-img
v-if="icon"
:src="icon"
:width="iconWidth || 30"
class="ml-8 mt-6 mb-4"
></v-img>
<h2 v-if="header" class="pb-2 px-8">{{ header }}</h2>
<h4 v-if="subheader" class="subhead pb-6 px-8 font-weight-bold">
{{ subheader }}
</h4>
<div class="pl-4 pr-16">
<slot name="content"> </slot>
</div>
</v-card>
</template>
<script>
export default {
name: "ServiceCard",
props: {
icon: Object,
iconWidth: String,
header: String,
subheader: String,
},
data() {
return {
svgComponent: this.logoSvg,
};
},
methods: {},
};
</script>
<style lang="scss" scoped>
</style>
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment