fix: add border bottom to headers
This commit is contained in:
@@ -1,5 +1,3 @@
|
|||||||
import Link from "next/link"
|
|
||||||
|
|
||||||
import { serverClient } from "@/lib/trpc/server"
|
import { serverClient } from "@/lib/trpc/server"
|
||||||
|
|
||||||
import AmenitiesList from "./AmenitiesList"
|
import AmenitiesList from "./AmenitiesList"
|
||||||
|
|||||||
@@ -3,12 +3,16 @@
|
|||||||
grid-template-rows: min-content auto;
|
grid-template-rows: min-content auto;
|
||||||
gap: var(--Spacing-x4);
|
gap: var(--Spacing-x4);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: var(--Spacing-x4) var(--Spacing-x5);
|
}
|
||||||
|
|
||||||
|
.content > * {
|
||||||
|
padding: var(--Spacing-x3) var(--Spacing-x2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
|
border-bottom: 1px solid var(--Base-Border-Subtle);
|
||||||
}
|
}
|
||||||
|
|
||||||
.header:has(> h2) {
|
.header:has(> h2) {
|
||||||
@@ -23,3 +27,9 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media and screen (min-width: 1367px) {
|
||||||
|
.content > * {
|
||||||
|
padding: var(--Spacing-x4);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user