This commit is contained in:
Alin
2023-12-15 15:12:17 -07:00
parent 3422e7750c
commit abd36709f2
14 changed files with 64 additions and 54 deletions
+1 -2
View File
@@ -10,7 +10,6 @@ import SwiftUI
struct AppListItems: View {
@EnvironmentObject var appState: AppState
// @Binding var reload: Bool
@Binding var search: String
@State private var isHovered = false
@Environment(\.colorScheme) var colorScheme
@@ -67,7 +66,7 @@ struct AppListItems: View {
if isHovered || isSelected {
RoundedRectangle(cornerRadius: 50)
.fill(isSelected ? Color("AccentColor") : Color("mode").opacity(0.5))
.frame(width: isSelected ? 4 : 2, height: 35)
.frame(width: isSelected ? 4 : 2, height: 30)
.padding(.leading, 5)
.offset(x: 20)
}