chore: 屏蔽词与样式

This commit is contained in:
streakingman 2022-09-16 02:57:19 +08:00
parent 777444d2cb
commit b53ea21bbf
3 changed files with 3 additions and 5 deletions

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" /> <link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>有解的羊了个羊</title> <title>有解的yang了个yang</title>
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>

View File

@ -14,7 +14,6 @@
width: 100%; width: 100%;
padding-bottom: 100%; padding-bottom: 100%;
position: relative; position: relative;
cursor: pointer;
} }
.scene-inner { .scene-inner {
@ -24,7 +23,7 @@
bottom: 0; bottom: 0;
top: 0; top: 0;
overflow: visible; overflow: visible;
font-size: 30px; font-size: 8vw;
} }
.symbol { .symbol {
@ -47,7 +46,6 @@
align-items: center; align-items: center;
border-radius: 8px; border-radius: 8px;
border: 2px solid #444; border: 2px solid #444;
background-color: #eee;
} }
.queue-container { .queue-container {

View File

@ -106,7 +106,7 @@ const Symbol: FC<SymbolProps> = ({ x, y, icon, isCover, status, onClick }) => {
> >
<div <div
className="symbol-inner" className="symbol-inner"
style={{ backgroundColor: isCover ? 'gray' : 'white' }} style={{ backgroundColor: isCover ? '#999' : 'white' }}
> >
<i>{icon}</i> <i>{icon}</i>
</div> </div>