Newer
Older
import CyberSecLogo from '../assets/images/logos/CyberSecLogo.png';
<v-container fluid>
<v-layout row wrap justify-center name="services-summary">
<v-flex lg2 md3 sm6 xs12 v-if="!ignoreIronBank">
logoCardText="Download DoD-wide approved containers or harden with Iron Bank"
<v-flex lg2 md3 sm6 xs12 v-if="!ignoreBigBang">
logoCardText="Deploy your own software factory with Big Bang"
logoCardUrl="/products/big-bang/"
<v-flex lg2 md3 sm6 xs12 v-if="!ignorePartyBus">
logoCardText="Get hands-on experience onboarding with Party Bus"
logoCardUrl="/products/party-bus"
logoCardText="Provide access to development, testing, and production enclaves"
logoCardText="Stay secured with our Cybersecurity team processes"
<LogoCard
:logoSource=""
logoCardText="Stay secured with our Cybersecurity team processes"
/>
</v-flex>
-->
</v-layout>
</v-container>
import LogoCard from "@/components/Base/LogoCard";
import IBLogo from "@/assets/images/logos/Iron_Bank_Logo_LIGHT.png";
import PBLogo from "@/assets/images/logos/P1_Party_Bus_Logo.png";
import BBLogo from "@/assets/images/logos/Big_Bang_Color_Logo_Black_text.png";
import CNAPlogo from "@/assets/images/logos/CNAP_logo.svg";
export default {
name: "ServicesSummary",
components: {
props: {
ignoreIronBank: {
type: Boolean,
data() {
return {
ibLogo: IBLogo,
pbLogo: PBLogo,
};
</script>
<style lang="scss" scoped>
.services-summary {
.row {
margin-left: 0;
margin-right: 0;
}
.service-container {
display: flex;
flex-direction: column;
align-items: center;
a {
.btn-link {
word-wrap: none;
}
}
h4 {
margin-top: 1rem;
margin-bottom: 1rem;
}
@include xs {
align-items: flex-start;
text-align: left;
h4 {
margin-left: 0;
padding-left: 0;
}
}
@media screen and (max-width: 1904px) {
.serviceHeight {
height: 280px;
}
}
@media screen and (max-width: 1264px) {
.serviceHeight {
height: 260px;
}
}
@media screen and (max-width: 960px) {
.serviceHeight {
height: 240px;
}
}