diff options
| author | Claude <noreply@anthropic.com> | 2026-05-20 09:40:20 +0000 |
|---|---|---|
| committer | Claude <noreply@anthropic.com> | 2026-05-20 09:40:20 +0000 |
| commit | 6dc2b16da127dd0a68907c037e8219eaacc8806c (patch) | |
| tree | fa4b1ba5a2d29d3a839e14b12d04522e1194ac2e /android-app/app/src/main | |
| parent | 925790fee2d3c092cb7ca20797c7b57eeff40fea (diff) | |
Fix gap between wave animation and ocean conditions panel
Removed the spurious constraintBottom_toBottomOf="parent" from forecast_row:
ConstraintLayout was vertically centering it between the wave and the sheet
bottom (default bias 0.5) instead of placing it flush below the wave.
Also aligned light-mode wave_sea_bottom (#074B68 → #0D2137) with the
forecast_row background so the wave tail blends seamlessly in light theme.
https://claude.ai/code/session_01YUbuZNDAoLea4cf9UGQ9qn
Diffstat (limited to 'android-app/app/src/main')
| -rw-r--r-- | android-app/app/src/main/res/layout/layout_instruments_sheet.xml | 3 | ||||
| -rwxr-xr-x | android-app/app/src/main/res/values/colors.xml | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/android-app/app/src/main/res/layout/layout_instruments_sheet.xml b/android-app/app/src/main/res/layout/layout_instruments_sheet.xml index 31c445e..5e58009 100644 --- a/android-app/app/src/main/res/layout/layout_instruments_sheet.xml +++ b/android-app/app/src/main/res/layout/layout_instruments_sheet.xml @@ -183,8 +183,7 @@ android:layout_marginEnd="-16dp" app:layout_constraintTop_toBottomOf="@id/wave_divider" app:layout_constraintStart_toStartOf="parent" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintBottom_toBottomOf="parent"> + app:layout_constraintEnd_toEndOf="parent"> <!-- Current --> <LinearLayout diff --git a/android-app/app/src/main/res/values/colors.xml b/android-app/app/src/main/res/values/colors.xml index 2df4109..c3b115c 100755 --- a/android-app/app/src/main/res/values/colors.xml +++ b/android-app/app/src/main/res/values/colors.xml @@ -52,7 +52,7 @@ <color name="wave_sky_top">#2B8FC4</color> <color name="wave_sky_bottom">#87C8DF</color> <color name="wave_sea_top">#0D7A9A</color> - <color name="wave_sea_bottom">#074B68</color> + <color name="wave_sea_bottom">#0D2137</color> <color name="wave_shimmer">#50FFFFFF</color> <color name="wave_whitecap">#80FFFFFF</color> |
