tutu/src/App.css

42 lines
784 B
CSS
Raw Normal View History

2024-10-30 06:13:19 +00:00
@import "normalize.css/normalize.css";
@import "./material/theme.css";
2024-07-22 13:57:04 +00:00
:root {
2024-07-24 06:27:20 +00: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 12:28:44 +00:00
background-color: var(--tutu-color-surface, transparent);
}
/*
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-07-14 12:28:44 +00:00
.custom-emoji {
2024-08-13 07:39:05 +00:00
width: 1em;
2024-08-05 07:33:00 +00:00
}
h1 {
margin: 0;
}
2024-11-18 14:41:11 +00:00
* {
user-select: none;
}