mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
54 lines
1008 B
Plaintext
54 lines
1008 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`container prop 1`] = `
|
|
<div style="height: 20px;">
|
|
<div style="height: 10px;">
|
|
<div class="van-sticky van-sticky--fixed" style="transform: translate3d(0, -5px, 0);">
|
|
Content
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`container prop 2`] = `
|
|
<div style="height: 20px;">
|
|
<div style="height: 10px;">
|
|
<div class="van-sticky" style="">
|
|
Content
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`offset-top prop 1`] = `
|
|
<div style="height: 10px;">
|
|
<div class="van-sticky van-sticky--fixed" style="top: 10px;">
|
|
Content
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`sticky to top 1`] = `
|
|
<div style="height: 10px;">
|
|
<div class="van-sticky">
|
|
Content
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`sticky to top 2`] = `
|
|
<div style="height: 10px;">
|
|
<div class="van-sticky van-sticky--fixed">
|
|
Content
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`z-index prop 1`] = `
|
|
<div style="height: 10px;">
|
|
<div class="van-sticky van-sticky--fixed" style="z-index: 0;">
|
|
Content
|
|
</div>
|
|
</div>
|
|
`;
|