feat(WEB-304): remaning UI from design system primitives
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
.container {
|
||||
align-items: center;
|
||||
background-color: var(--some-grey-color, #f2f2f2);
|
||||
border-radius: var(--Corner-radius-Medium);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
min-height: 25rem;
|
||||
background-color: var(--some-grey-color, #f2f2f2);
|
||||
border-radius: 0.8rem;
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
import { trpc } from "@/lib/trpc/client"
|
||||
|
||||
import LoadingSpinner from "@/components/LoadingSpinner"
|
||||
import CardGrid from "@/components/TempDesignSystem/CardGrid"
|
||||
import Grids from "@/components/TempDesignSystem/Grids"
|
||||
|
||||
import Header from "../../Header"
|
||||
import Container from "../Container"
|
||||
@@ -43,7 +43,7 @@ export default function PreviousStays({
|
||||
<LoadingSpinner />
|
||||
) : stays.length ? (
|
||||
<ListContainer>
|
||||
<CardGrid>
|
||||
<Grids.Stackable>
|
||||
{stays.map((stay) => (
|
||||
<StayCard
|
||||
key={stay.attributes.confirmationNumber}
|
||||
@@ -51,7 +51,7 @@ export default function PreviousStays({
|
||||
stay={stay}
|
||||
/>
|
||||
))}
|
||||
</CardGrid>
|
||||
</Grids.Stackable>
|
||||
{hasNextPage ? (
|
||||
<ShowMoreButton disabled={isFetching} loadMoreData={loadMoreData} />
|
||||
) : null}
|
||||
|
||||
Reference in New Issue
Block a user