pc 앱 배포,다운로드 기능

This commit is contained in:
Macbook
2026-06-14 10:33:53 +09:00
parent 92f67580e3
commit 407e746822
14 changed files with 640 additions and 86 deletions
+43 -6
View File
@@ -595,24 +595,61 @@
}
/* Tauri 네이티브 위젯 창 */
/* Tauri 네이티브 위젯 창 — OS 창 전체를 콘텐츠 영역으로 사용 */
html.fw-native-widget,
html.fw-native-widget body {
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: var(--bg, #1a1b26);
color: var(--text, #c0caf5);
font-family: var(--font, 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif);
}
html.fw-native-widget #root {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
min-height: 0;
overflow: hidden;
}
.fw-layer--picker-only {
pointer-events: auto;
}
.fw-widget-native-root {
width: 100vw;
height: 100vh;
flex: 1;
min-height: 0;
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
background: var(--bg, #1a1b26);
}
.fw-widget-native-root .fw-window {
position: static !important;
.fw-widget-native-root .fw-window,
.fw-widget-native-root .fw-window--native {
position: relative !important;
flex: 1;
min-height: 0;
width: 100% !important;
height: 100% !important;
max-width: none !important;
max-height: none !important;
box-shadow: none;
border: none;
box-shadow: none !important;
border: none !important;
border-radius: 0 !important;
}
.fw-window--native .fw-window-body-wrap {
flex: 1;
min-height: 0;
}
.fw-window--native .fw-window-body {
height: 100%;
}