mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
16 lines
664 B
XML
16 lines
664 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
<item>
|
||
|
|
<shape android:shape="rectangle">
|
||
|
|
<solid android:color="@color/gray_500" />
|
||
|
|
<corners android:radius="4dp" android:topLeftRadius="8dp" android:topRightRadius="8dp" />
|
||
|
|
</shape>
|
||
|
|
</item>
|
||
|
|
|
||
|
|
<item android:bottom="4dp">
|
||
|
|
<shape android:shape="rectangle">
|
||
|
|
<solid android:color="@color/gray_700" />
|
||
|
|
<corners android:topLeftRadius="4dp" android:topRightRadius="4dp" android:bottomLeftRadius="2dp" android:bottomRightRadius="2dp" />
|
||
|
|
</shape>
|
||
|
|
</item>
|
||
|
|
</layer-list>
|