Skip to content

Commit dabc2ab

Browse files
authored
Merge pull request matrix-org#4807 from matrix-org/jryans/read-reader-remainder-size-release
Update read receipt remainder for internal font size change
2 parents 5a310cf + 38bf168 commit dabc2ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/units.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ limitations under the License.
1919

2020
// converts a pixel value to rem.
2121
export function toRem(pixelValue: number): string {
22-
return pixelValue / 15 + "rem";
22+
return pixelValue / 10 + "rem";
2323
}
2424

2525
export function toPx(pixelValue: number): string {

0 commit comments

Comments
 (0)