Revert reducing margin on narrow screens (#10375)

This commit is contained in:
Billy Biggs
2025-10-01 14:50:33 -07:00
committed by GitHub
parent 6eca199c39
commit ef76a801c4
7 changed files with 74 additions and 92 deletions

View File

@@ -1,15 +0,0 @@
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Linearly interpolates between two values.
*
* @param start The start value.
* @param end The end value.
* @param t The interpolation amount (typically between 0 and 1).
*/
export const lerp = (start: number, end: number, t: number): number =>
start + (end - start) * t;