UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 97b0b65f authored by Luke Glasscock's avatar Luke Glasscock
Browse files

Add additional updates

parent 24b85033
No related branches found
No related tags found
No related merge requests found
......@@ -11,9 +11,8 @@
v-on="on"
v-if="text"
:class="light ? 'text-light' : 'text'"
>{{ spaceBefore ? " " : "" }}{{ text }}{{ spaceAfter ? " " : "" }}</span
>
{{ text }}
</span>
<span v-bind="attrs" v-on="on" v-if="icon">
<v-icon
:x-small="iconSize === 'x-small'"
......@@ -40,45 +39,53 @@ export default {
props: {
text: {
type: String,
default: ""
default: "",
},
tooltip: {
type: [String, Array],
default: ""
default: "",
},
icon: {
type: String,
default: ""
default: "",
},
iconSize: {
type: String,
default: "x-small"
default: "x-small",
},
iconColor: {
type: String,
default: "white"
default: "white",
},
left: {
type: Boolean,
default: false
default: false,
},
right: {
type: Boolean,
default: false
default: false,
},
top: {
type: Boolean,
default: false
default: false,
},
bottom: {
type: Boolean,
default: false
default: false,
},
light: {
type: Boolean,
default: false
}
}
default: false,
},
spaceBefore: {
type: Boolean,
default: true,
},
spaceAfter: {
type: Boolean,
default: true,
},
},
};
</script>
<style lang="scss" scoped>
......
......@@ -11,16 +11,16 @@
</v-flex>
<v-flex lg2 md3 sm6 xs12>
<LogoCard
:logoSource="pbLogo"
logoCardText="Get hands-on experience onboarding with ABMS ADCE Party Bus"
logoCardUrl="/products/abms-adce/"
:logoSource="bbLogo"
logoCardText="Deploy your own software factory with Big Bang"
logoCardUrl="/products/big-bang/"
/>
</v-flex>
<v-flex lg2 md3 sm6 xs12>
<LogoCard
:logoSource="bbLogo"
logoCardText="Deploy your own software factory with Big Bang"
logoCardUrl="/products/big-bang/"
:logoSource="pbLogo"
logoCardText="Get hands-on experience onboarding with ABMS ADCE Party Bus"
logoCardUrl="/products/abms-adce/"
/>
</v-flex>
<v-flex lg2 md3 sm6 xs12>
......
......@@ -53,7 +53,11 @@
Get hands-on experience and training with our rapid workshop to stand
up a hello world pipeline with a templated app through Party Bus -
<Tooltip text="ABMS" tooltip="Advanced Battle Management System" />
<Tooltip text="ADCE" tooltip="All Domain Common Environment" />.
<Tooltip
text="ADCE"
tooltip="All Domain Common Environment"
:spaceAfter="false"
/>.
</p>
</div>
</v-container>
......@@ -109,6 +113,7 @@
text="ADCE"
tooltip="All Domain Common Environment"
light
:spaceAfter="false"
/>.
</p>
<div class="row">
......
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