diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-07 12:19:57 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-07 12:19:57 +0300 |
| commit | 839a0dc9f08fb05846df2b8b040aadb1f5127699 (patch) | |
| tree | dcfec66fc112900846f7ad36fc6f2dbcab14c845 | |
| parent | 71dfb0bdedfe03fdc507e39ad2f6836ca108a5e6 (diff) | |
fix asymmetric card margins
| -rwxr-xr-x | org.fox.ttrss/src/main/res/layout/headlines_row.xml | 4 | ||||
| -rwxr-xr-x | org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/headlines_row.xml b/org.fox.ttrss/src/main/res/layout/headlines_row.xml index e6707ff4..d91c1082 100755 --- a/org.fox.ttrss/src/main/res/layout/headlines_row.xml +++ b/org.fox.ttrss/src/main/res/layout/headlines_row.xml @@ -3,7 +3,9 @@ xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/headlines_row" - android:layout_margin="8dp" + android:layout_marginStart="8dp" + android:layout_marginEnd="8dp" + android:layout_marginTop="8dp" android:layout_width="wrap_content" android:layout_height="wrap_content"> diff --git a/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml b/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml index da7ca3d0..c6184211 100755 --- a/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml +++ b/org.fox.ttrss/src/main/res/layout/headlines_row_unread.xml @@ -4,7 +4,9 @@ xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/headlines_row" app:cardBackgroundColor="?colorSurfaceContainerLowest" - android:layout_margin="8dp" + android:layout_marginStart="8dp" + android:layout_marginEnd="8dp" + android:layout_marginTop="8dp" android:layout_width="wrap_content" android:layout_height="wrap_content"> |