Fix overflow css and add one more path
All checks were successful
ci/woodpecker/push/build Pipeline was successful
All checks were successful
ci/woodpecker/push/build Pipeline was successful
This commit is contained in:
parent
7157efed09
commit
9d29df1ddb
2 changed files with 5 additions and 3 deletions
|
@ -8,7 +8,8 @@ export async function load({ params }) {
|
|||
{id: 1, name: 'Pianello 1', image: '/images/test-1.jpg', duration: 1233},
|
||||
{id: 2, name: 'Pianello 2', image: '/images/test-1.jpg', duration: 1233},
|
||||
{id: 3, name: 'Pianello 3', image: '/images/test-1.jpg', duration: 2134},
|
||||
{id: 4, name: 'Pianello 4', image: '/images/test-1.jpg', duration: 2134 * 4}
|
||||
{id: 4, name: 'Pianello 4', image: '/images/test-1.jpg', duration: 2134 * 4},
|
||||
{id: 5, name: 'Pianello 5', image: '/images/test-1.jpg', duration: 2134 * 4},
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,8 +18,9 @@
|
|||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
gap: 15px;
|
||||
margin-top: 80px;
|
||||
max-height: calc(100% - 17vh);
|
||||
margin-top: 70px;
|
||||
padding-top: 10px;
|
||||
max-height: calc(100% - 20vh);
|
||||
overflow-y: scroll;
|
||||
}
|
||||
</style>
|
Loading…
Reference in a new issue