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

Update read receipt remainder for internal font size change
This commit is contained in:
J. Ryan Stinnett 2020-06-22 19:22:01 +01:00 committed by GitHub
commit de227c0650
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 {