We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e407819 commit 7c15014Copy full SHA for 7c15014
app/src/pages/_app.tsx
@@ -211,7 +211,7 @@ export default function App() {
211
212
return (
213
<div
214
- className={cn("relative h-full w-full rounded-xl text-white shadow-2xl ring", {
+ className={cn("relative h-full w-full", {
215
"bg-settings-page-bg": isMobile || location.pathname !== "/",
216
})}
217
style={{ zoom: appScale }}
@@ -305,7 +305,7 @@ export default function App() {
305
{/* 中间标题 */}
306
{useNativeTitleBar || isWeb ? (
307
// h-0 才能完全摆脱划线时经过此区域的卡顿问题
308
- <div className="pointer-events-none h-0 flex-1 ring"></div>
+ <div className="pointer-events-none h-0 flex-1"></div>
309
) : (
310
<>
311
<Button
0 commit comments