1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-429 Editor | Enhancement | Make bold font more bold (#2755)

This commit is contained in:
Mikhail 2022-12-09 13:59:36 +03:00 committed by GitHub
parent d492af007f
commit 3b8abb850d
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
<font
android:fontStyle="normal"
android:fontWeight="400"
android:font="@font/inter_regular" />
<font
android:fontStyle="normal"
android:fontWeight="700"
android:font="@font/inter_bold" />
</font-family>

View file

@ -15,7 +15,7 @@
</style>
<style name="BlockTextContentStyle" parent="DefaultEditorTextStyle">
<item name="android:fontFamily">@font/inter_regular</item>
<item name="android:fontFamily">@font/inter_font</item>
<item name="android:paddingTop">4dp</item>
<item name="android:paddingBottom">4dp</item>
<item name="android:paddingStart">@dimen/default_document_content_padding_start</item>