reduce vertical padding around dialogs

#292
This commit is contained in:
Johan von Forstner
2023-08-02 20:46:16 +02:00
parent 6f0113c50d
commit c37f72a26b

View File

@@ -73,6 +73,13 @@
<!-- this is necessary to make sure the dialog gets "pushed up" when the keyboard appears -->
<item name="android:windowTranslucentStatus">false</item>
<item name="dialogCornerRadius">28dp</item>
<item name="alertDialogStyle">@style/MaterialAlertDialog.App</item>
</style>
<style name="MaterialAlertDialog.App" parent="MaterialAlertDialog.Material3">
<!-- reduce insets from 80dp to 24dp -->
<item name="backgroundInsetTop">24dp</item>
<item name="backgroundInsetBottom">24dp</item>
</style>
<style name="CarAppTheme">