mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
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:
commit
de227c0650
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ limitations under the License.
|
||||||
|
|
||||||
// converts a pixel value to rem.
|
// converts a pixel value to rem.
|
||||||
export function toRem(pixelValue: number): string {
|
export function toRem(pixelValue: number): string {
|
||||||
return pixelValue / 15 + "rem";
|
return pixelValue / 10 + "rem";
|
||||||
}
|
}
|
||||||
|
|
||||||
export function toPx(pixelValue: number): string {
|
export function toPx(pixelValue: number): string {
|
||||||
|
|
Loading…
Reference in a new issue