Commit 170ae1aa authored by ekager's avatar ekager Committed by Emily Kager
Browse files

For #12263 - Adds end margin to synced tabs header

parent 331090d1
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/synced_tabs_group"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
@@ -12,17 +12,19 @@

    <TextView
        android:id="@+id/synced_tabs_group_name"
        android:layout_width="wrap_content"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="16dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:drawablePadding="32dp"
        android:gravity="center_vertical|start"
        android:textAppearance="@style/Header14TextStyle"
        android:textColor="?primaryText"
        android:textSize="12sp"
        android:gravity="center"
        app:drawableStartCompat="@drawable/mozac_ic_device_desktop"
        app:drawableTint="?primaryText"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:text="Header" />