aboutsummaryrefslogtreecommitdiffstats
path: root/conversations/src/main/res/drawable/infocard_border.xml
blob: af7d5d22b63a0292750e9d863bf47012e1b5df0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <solid android:color="@color/primarybackground" />

    <corners android:radius="2dp" />

    <stroke
        android:width="0.5dp"
        android:color="@color/divider" >
    </stroke>
    
    <padding
        android:bottom="0dp"
        android:left="0dp"
        android:right="0dp"
        android:top="0dp" />

</shape>