style: 윈도우 스크롤바 생성 여부에 따른 헤더 레이아웃 틀어짐 방지를 위해 모든 페이지에 overflow-y: scroll 적용

This commit is contained in:
jade
2026-07-13 14:08:34 +09:00
parent c4ebdd0154
commit 2cfba18bb6
4 changed files with 4 additions and 3 deletions

View File

@@ -364,7 +364,7 @@
}
</style>
</head>
<body>
<body style="overflow-y: scroll;">
<header style="border-bottom: 1px solid #27272a; background: rgba(9,9,11,0.85); backdrop-filter: blur(16px); position: sticky; top: 0; z-index: 1050; margin-bottom: 2rem; height: 56px;">
<div class="container d-flex align-items-center justify-content-between h-100">

View File

@@ -55,7 +55,7 @@
.param-table tr:last-child td { border-bottom: none; }
</style>
</head>
<body class="min-h-screen">
<body class="min-h-screen" style="overflow-y: scroll;">
<header style="border-bottom: 1px solid #27272a; background: rgba(9,9,11,0.85); backdrop-filter: blur(16px);" class="sticky top-0 z-50">
<div class="max-w-6xl mx-auto px-6 h-14 flex items-center justify-between">

View File

@@ -97,7 +97,7 @@
@keyframes spin { to { transform: rotate(360deg); } }
</style>
</head>
<body class="min-h-screen">
<body class="min-h-screen" style="overflow-y: scroll;">
<header style="border-bottom: 1px solid #27272a; background: rgba(9,9,11,0.85); backdrop-filter: blur(16px);" class="sticky top-0 z-50">
<div class="max-w-6xl mx-auto px-6 h-14 flex items-center justify-between">

View File

@@ -30,6 +30,7 @@ subprojects {
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
testImplementation 'org.springframework.boot:spring-boot-starter-test'