ui: make tablayout text lowercase
Make the TabLayout text lowercase, which seems to be what Material3 does by default (and it looks better anyway).
This commit is contained in:
parent
5c3db12f10
commit
23399be0c3
2 changed files with 4 additions and 1 deletions
|
|
@ -76,7 +76,7 @@
|
|||
<style name="Widget.Auxio.Button.AppWidget" parent="Widget.Auxio.Button.AppWidget.V31">
|
||||
<item name="android:minHeight">@dimen/size_btn_small</item>
|
||||
<item name="android:scaleType">fitCenter</item>
|
||||
<item name="android:padding">10dp</item>
|
||||
<item name="android:padding">@dimen/spacing_small</item>
|
||||
</style>
|
||||
|
||||
<!-- Widget panel -->
|
||||
|
|
|
|||
|
|
@ -70,6 +70,9 @@
|
|||
|
||||
<style name="TextAppearance.Auxio.TabLayout.Label" parent="@style/TextAppearance.Design.Tab">
|
||||
<item name="android:fontFamily">@font/inter_semibold</item>
|
||||
<item name="android:letterSpacing">0.01</item>
|
||||
<item name="android:textSize">@dimen/text_size_small</item>
|
||||
<item name="textAllCaps">false</item>
|
||||
</style>
|
||||
|
||||
<style name="Widget.Auxio.ItemLayout" parent="">
|
||||
|
|
|
|||
Loading…
Reference in a new issue