v0.5.1: Anilife 폴백 체인 개선, 레이아웃 반응형, 프리로더 UI 개선 진행 중

This commit is contained in:
2026-01-04 01:23:44 +09:00
parent dc382a4dc1
commit 4c20f96cef
4 changed files with 72 additions and 25 deletions

View File

@@ -7,6 +7,13 @@
--notify-danger-bg: rgba(127, 29, 29, 0.95);
}
/* Cosmic Violet Body Background - Override theme CSS */
body {
background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4c1d95 100%) !important;
background-attachment: fixed !important;
color: #e0e7ff !important;
}
/* Common Layout Wrapper - Responsive */
.anilife-common-wrapper {
max-width: 100%;

View File

@@ -1,6 +1,6 @@
/* Shared Mobile Custom CSS for Anime Downloader */
/* Custom Notify Styling for Mobile */
/* Custom Notify Styling - Mobile Default */
.bootstrap-notify-container,
[data-notify="container"] {
max-width: 90vw !important;
@@ -18,6 +18,18 @@
z-index: 10000 !important;
}
/* Desktop Notify: 오른쪽 정렬, 적절한 사이즈 */
@media (min-width: 769px) {
.bootstrap-notify-container,
[data-notify="container"] {
max-width: 450px !important;
min-width: 300px !important;
width: auto !important;
right: 20px !important;
left: auto !important;
}
}
[data-notify="container"].alert-success {
border-color: rgba(16, 185, 129, 0.4) !important;
background: var(--notify-success-bg, rgba(6, 78, 59, 0.95)) !important;