|
|
@@ -10,7 +10,7 @@ struct FrontPageView: View {
|
|
|
mainContent
|
|
|
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
|
|
}
|
|
|
- .frame(minWidth: 900, minHeight: 700)
|
|
|
+ .frame(minWidth: AppWindow.minWidth, minHeight: AppWindow.minHeight)
|
|
|
.background(AppTheme.background)
|
|
|
}
|
|
|
|
|
|
@@ -56,5 +56,5 @@ private struct ToolPlaceholderView: View {
|
|
|
|
|
|
#Preview {
|
|
|
FrontPageView()
|
|
|
- .frame(width: 1200, height: 900)
|
|
|
+ .frame(width: AppWindow.width, height: AppWindow.height)
|
|
|
}
|