Added LinksGrid components, updated documentation

This commit is contained in:
2024-12-07 23:31:31 +09:00
parent e821b258c3
commit 9dea40236e
24 changed files with 278 additions and 141 deletions

View File

@@ -13,9 +13,13 @@ const mobileMaxWidth = 640;
* @enum {number}
*/
const enum ViewPortType {
// width > 1024
DESKTOP,
// 1024 >= width > 960
LARGE_TABLET,
// 960 >= width > 640
MEDIUM_TABLET,
// 640 >= width
MOBILE,
}