[1/2] rounded corners in alert dialogs

This commit is contained in:
Wojtaz0w 2023-09-30 15:08:06 +00:00 committed by GitHub
parent a4cefb33ef
commit 05ad2ed0f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/card_background"/>
<corners android:radius="24dp"/>
</shape>

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/card_background_dark"/>
<corners android:radius="24dp"/>
</shape>