#772 fix scroll issue on mobile

This commit is contained in:
lethemanh
2026-04-13 10:30:47 +07:00
parent e5687feaeb
commit 23edbfa7d2
7 changed files with 37 additions and 2 deletions
+17
View File
@@ -1,5 +1,22 @@
declare module '*.styl'
declare module 'classnames' {
type ClassValue =
| string
| number
| boolean
| null
| undefined
| ClassArray
| ClassDictionary
interface ClassDictionary {
[id: string]: boolean | undefined | null
}
type ClassArray = ClassValue[]
function classnames(...args: ClassValue[]): string
export = classnames
}
declare module '@linagora/twake-mui' {
export * from '@mui/material'