Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/Main/Contents/Travel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function Travel() {
<div className="mx-36 flex items-center justify-center mobile:mx-0">
<div
style={{ width: "100%" }}
className="min-h-[324px] gap-24 rounded-32 bg-white px-30 pb-8 pt-24 tablet:gap-3 mobile:gap-3"
className="h-[350px] gap-24 rounded-32 bg-white px-30 pb-8 pt-24 tablet:gap-3 mobile:gap-3"
>
{choice === "latest" ? (
<TravelCarousel choice={"latest"} />
Expand Down
16 changes: 8 additions & 8 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

@font-face {
font-family: "NanumSquareRound";
src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NanumSquareRound.woff") format("woff");
src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/NanumSquareRound.woff")
format("woff");
font-weight: normal;
font-style: normal;
}
Expand All @@ -15,12 +16,13 @@
}
}

@layer components {}
@layer components {
}

@layer utilities {}
@layer utilities {
}

@layer base {

:root {
--background: 0 0% 100%;
--foreground: 222.2 84% 4.9%;
Expand Down Expand Up @@ -234,8 +236,6 @@
--stone-100: rgb(67, 67, 67);

--text-white: #ffffff;


}
}

Expand All @@ -254,6 +254,7 @@
.slick-arrow.slick-next,
.slick-arrow.slick-prev {
display: none !important;
top: 155px !important;
}

.my-custom-slider .slick-arrow.slick-next,
Expand Down Expand Up @@ -342,6 +343,5 @@
/* 호버 시 스크롤바 핸들 스타일 변경 */
.scrollbar-hide:hover::-webkit-scrollbar-thumb {
background-color: rgb(219, 219, 219);
;
/* 호버 시 스크롤바 핸들의 배경 색상을 어둡게 조정 */
}
}