feat: add basic styling to checkbox

This commit is contained in:
Fredrik Thorsson
2024-07-11 15:22:55 +02:00
parent aefa779a17
commit 4a18d68909
11 changed files with 89 additions and 8 deletions

View File

@@ -1,3 +1,10 @@
.main {
display: grid;
grid-template-columns: repeat(3, minmax(min-content, max-content));
padding: 32px 32px 0px 32px;
background-color: var(--Scandic-Brand-Warm-White);
}
.section {
display: grid;
gap: var(--Spacing-x4);

View File

@@ -1,6 +1,7 @@
import { serverClient } from "@/lib/trpc/server"
import HotelCard from "@/components/HotelReservation/HotelCard"
import HotelFilter from "@/components/HotelReservation/SelectHotel/HotelFilter"
import styles from "./page.module.css"
@@ -17,7 +18,8 @@ export default async function SelectHotelPage({
const hotels = [attributes]
return (
<main>
<main className={styles.main}>
<HotelFilter />
<section className={styles.section}>
{hotels.map((hotel) => (
<HotelCard key={hotel.name} hotel={hotel} />