Skip to content

Commit

Permalink
fix(HomeView): improved joinMonitorView, for smaller devices
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasfroeller committed Jun 23, 2024
1 parent def4979 commit 9e90696
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions core/features/Home/Views/HomeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct HomeView: View {
var body: some View {
VStack(alignment: .center) {
WebView(svgString: SVGIcons.logo())
.frame(height: 380)
.frame(minHeight: 325)

Text("Propromo")
.bold()
Expand All @@ -27,21 +27,20 @@ struct HomeView: View {
.font(.subheadline)
.foregroundStyle(Color.gray)
.textCase(.uppercase)
.padding(.bottom, 20)
.padding(.bottom, 5)

Text("Works with:")
.bold()
.font(.caption)
.foregroundStyle(Color.gray)
.textCase(.uppercase)

HStack {
Spacer()
WebView(svgString: SVGIcons.github(size: 150))
.frame(width: 150)
.padding(.leading, 105)
Spacer()
}.padding(.bottom, 40)
}.padding(.bottom, 15)

HStack {
TextField("Monitor-ID", text: Binding(get: {
Expand Down

0 comments on commit 9e90696

Please sign in to comment.