summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/drawer_status.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/drawer_status.xml')
-rw-r--r--app/src/main/res/layout/drawer_status.xml14
1 files changed, 8 insertions, 6 deletions
diff --git a/app/src/main/res/layout/drawer_status.xml b/app/src/main/res/layout/drawer_status.xml
index 9c22561f6..3a741fe3f 100644
--- a/app/src/main/res/layout/drawer_status.xml
+++ b/app/src/main/res/layout/drawer_status.xml
@@ -14,19 +14,21 @@
You should have received a copy of the GNU General Public License along with Fedilab; if not,
see <http://www.gnu.org/licenses>
-->
-<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/cardview_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
-
android:layout_marginHorizontal="@dimen/card_margin"
android:layout_marginTop="@dimen/card_margin"
android:clipToPadding="false"
- app:cardElevation="5dp"
- android:clipChildren="false"
- app:strokeWidth="0dp">
+ android:clipChildren="false">
+
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="1px"
+ android:background="?colorOutline" />
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/main_container"
@@ -732,4 +734,4 @@
</androidx.appcompat.widget.LinearLayoutCompat>
-</com.google.android.material.card.MaterialCardView>
+</RelativeLayout>