tutu/src/App.css

27 lines
606 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);
2024-11-10 14:48:04 +00:00
overscroll-behavior-y: none; /* FIXME: Safari 15.4 does not support this, requires 16+ */
2024-07-14 12:28:44 +00:00
}
2024-11-10 14:41:21 +00:00
:root, body, #root {
min-height: 100vh;
min-height: 100dvh;
2024-11-10 14:48:04 +00:00
height: 100vh;
height: 100dvh;
}
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;
}