Merge pull request #4807 from matrix-org/jryans/read-reader-remainder-size-release

Update read receipt remainder for internal font size change
pull/21833/head
J. Ryan Stinnett 2020-06-23 11:14:51 +01:00 committed by GitHub
commit dabc2abfc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ limitations under the License.
// converts a pixel value to rem.
export function toRem(pixelValue: number): string {
return pixelValue / 15 + "rem";
return pixelValue / 10 + "rem";
}
export function toPx(pixelValue: number): string {