mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 23:50:04 +00:00
54 lines
862 B
Vue
54 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>
|