mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-28 09:56:15 +00:00
13 lines
372 B
XML
13 lines
372 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:shape="rectangle">
|
||
|
|
<corners
|
||
|
|
android:radius="10dip"/>
|
||
|
|
<solid
|
||
|
|
android:color="@color/red_50" />
|
||
|
|
<padding
|
||
|
|
android:left="5dip"
|
||
|
|
android:right="5dip"
|
||
|
|
android:top="5dip"
|
||
|
|
android:bottom="5dip" />
|
||
|
|
</shape>
|