2024-10-30 14:13:19 +08:00
|
|
|
@import "normalize.css/normalize.css";
|
|
|
|
@import "./material/theme.css";
|
|
|
|
|
2024-07-22 21:57:04 +08:00
|
|
|
:root {
|
2024-07-24 14:27:20 +08:00
|
|
|
--safe-area-inset-top: env(safe-area-inset-top);
|
|
|
|
--safe-area-inset-left: env(safe-area-inset-left);
|
|
|
|
--safe-area-inset-bottom: env(safe-area-inset-bottom);
|
|
|
|
--safe-area-inset-right: env(safe-area-inset-right);
|
2024-07-14 20:28:44 +08:00
|
|
|
background-color: var(--tutu-color-surface, transparent);
|
|
|
|
}
|
|
|
|
|
2024-11-10 23:21:08 +08:00
|
|
|
/*
|
|
|
|
Fix the bottom gap on iOS standalone.
|
|
|
|
https://stackoverflow.com/questions/66005655/pwa-ios-child-of-body-not-taking-100-height-gap-on-bottom
|
|
|
|
*/
|
|
|
|
@media screen and (display-mode: standalone) {
|
|
|
|
body {
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
}
|
2024-11-10 22:29:49 +08:00
|
|
|
}
|
|
|
|
|
2024-07-14 20:28:44 +08:00
|
|
|
.custom-emoji {
|
2024-08-13 15:39:05 +08:00
|
|
|
width: 1em;
|
2024-08-05 15:33:00 +08:00
|
|
|
}
|
2024-10-30 17:25:06 +08:00
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2024-11-18 22:41:11 +08:00
|
|
|
|
|
|
|
* {
|
|
|
|
user-select: none;
|
|
|
|
}
|