Newer
Older
import CyberSecLogo from '../assets/images/logos/CyberSecLogo.webp';
<v-container fluid>
<v-layout row wrap justify-center name="services-summary">
<v-flex lg2 md3 sm6 xs12>
logoCardText="Download DoD-wide approved containers or harden with Iron Bank"
logoCardUrl="/products/iron-bank"
data-cy="ib"
<v-flex lg2 md3 sm6 xs12>
logoCardText="Deploy your own software factory with Big Bang"
<v-flex lg2 md3 sm6 xs12>
logoCardText="Get hands-on experience onboarding with Party Bus"
logoCardUrl="/products/party-bus"
<v-flex lg2 md3 sm6 xs12>
logoCardText="Provide access to development, testing, and production enclaves"
logoCardText="Stay secured with our Cybersecurity team processes"
/>
</v-flex>
</v-layout>
</v-container>
import LogoCard from "@/components/Base/LogoCard.vue";
import IBLogo from "@/assets/images/logos/Iron_Bank_Logo_LIGHT.webp";
import PBLogo from "@/assets/images/logos/P1_Party_Bus_Logo.webp";
import BBLogo from "@/assets/images/logos/Big_Bang_Color_Logo_Black_text.webp";
import CSLogo from "@/assets/images/logos/CyberSecLogo.webp";
export default {
name: "ServicesSummary",
components: {
},
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;
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;
}
}