v0.5.1: Mobile UX improvements - Custom notify styling, nav margin fixes, search button optimization
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
background-image: radial-gradient(circle at top right, #1e293b 0%, transparent 60%), radial-gradient(circle at bottom left, #1e293b 0%, transparent 60%);
|
||||
color: var(--text-color);
|
||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||||
overflow: hidden; /* 외부 스크롤 방지 - 흔들림 해결 */
|
||||
/* overflow: hidden 제거 - 모바일 스크롤 허용 */
|
||||
}
|
||||
|
||||
/* Container & Typography */
|
||||
@@ -29,6 +29,10 @@
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
body {
|
||||
overflow-x: hidden !important;
|
||||
overflow-y: auto !important; /* 세로 스크롤 허용 */
|
||||
}
|
||||
.container-fluid {
|
||||
padding: 4px; /* 모바일 더 작은 여백 */
|
||||
}
|
||||
@@ -39,6 +43,12 @@
|
||||
margin-top: 8px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
/* 로그 테이블 뷰포트 기반 높이 */
|
||||
textarea#log, textarea#add {
|
||||
max-height: 60vh !important;
|
||||
height: auto !important;
|
||||
min-height: 300px !important;
|
||||
}
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
|
||||
Reference in New Issue
Block a user