aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/drawable/date_bubble.xml
blob: 0ea7b076183e6eee2bd414b7ed1239ff822d1377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <corners
        android:topLeftRadius="5dp"
        android:topRightRadius="5dp"
        android:bottomRightRadius="5dp"
        android:bottomLeftRadius="5dp">
    </corners>
    <padding
        android:bottom="6dp"
        android:left="6dp"
        android:right="6dp"
        android:top="6dp" />
    <solid
        android:color="@color/lightgreen">
    </solid>
</shape>