mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
use the standard dp margin & padding references
This commit is contained in:
parent
1c19e55617
commit
0e10c08442
2 changed files with 5 additions and 5 deletions
|
@ -30,9 +30,9 @@
|
|||
android:layout_height="0dp"
|
||||
android:layout_weight="10"
|
||||
android:weightSum="3"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:layout_marginLeft="16dp"
|
||||
android:layout_marginRight="16dp">
|
||||
android:layout_marginBottom="@dimen/standard_margin"
|
||||
android:layout_marginLeft="@dimen/standard_margin"
|
||||
android:layout_marginRight="@dimen/standard_margin">
|
||||
|
||||
<android.support.v7.widget.AppCompatButton
|
||||
android:id="@+id/skip"
|
||||
|
@ -63,7 +63,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:padding="16dp"/>
|
||||
android:padding="@dimen/standard_padding"/>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
|
|
|
@ -25,6 +25,6 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:id="@+id/whatsNewText"
|
||||
android:layout_margin="15dp"
|
||||
android:layout_margin="@dimen/standard_margin"
|
||||
android:layout_gravity="center_horizontal"/>
|
||||
</LinearLayout>
|
Loading…
Reference in a new issue