From d3e21e6050fd8cfde6ff7c68d9f8dfedf7b6301f Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 16 Sep 2025 12:01:07 +0200 Subject: Add glass --- .../Base Components/EvolutionPicker/EvolutionPicker.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift') diff --git a/Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift b/Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift index 5748e59..da67054 100644 --- a/Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift +++ b/Map/Presentation/Base Components/EvolutionPicker/EvolutionPicker.swift @@ -21,7 +21,7 @@ struct EvolutionPicker: View { @FocusState var isFocused: Bool @Binding var selectedEvolution: StageType - + var body: some View { Button( @@ -60,9 +60,9 @@ struct EvolutionPicker: View { ) .buttonStyle(.borderless) .background(isShowingMenu ? Color.Theme.UI.foreground : Color.clear) - .cornerRadius(4.0) + .cornerRadius(Dimensions.EvolutionPicker.radius) .overlay( - RoundedRectangle(cornerRadius: 4.0) + RoundedRectangle(cornerRadius: Dimensions.EvolutionPicker.radius) .stroke( isShowingMenu ? Color.Theme.UI.foreground : (isHovered ? Color.Theme.UI.foreground : Color.clear), -- cgit