mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 23:20:02 +00:00
53 lines
862 B
Vue
53 lines
862 B
Vue
<template>
|
|
<div class="VPTeamPage">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPTeamPage {
|
|
padding-bottom: 96px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.VPTeamPage {
|
|
padding-bottom: 128px;
|
|
}
|
|
}
|
|
|
|
:slotted(.VPTeamPageSection + .VPTeamPageSection),
|
|
:slotted(.VPTeamMembers + .VPTeamPageSection) {
|
|
margin-top: 64px;
|
|
}
|
|
|
|
:slotted(.VPTeamMembers + .VPTeamMembers) {
|
|
margin-top: 24px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
:slotted(.VPTeamPageTitle + .VPTeamPageSection) {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
:slotted(.VPTeamPageSection + .VPTeamPageSection),
|
|
:slotted(.VPTeamMembers + .VPTeamPageSection) {
|
|
margin-top: 96px;
|
|
}
|
|
}
|
|
|
|
:slotted(.VPTeamMembers) {
|
|
padding: 0 24px;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
:slotted(.VPTeamMembers) {
|
|
padding: 0 48px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
:slotted(.VPTeamMembers) {
|
|
padding: 0 64px;
|
|
}
|
|
}
|
|
</style>
|