一些检测仍在等待运行
Docs Build / build-and-deploy (push) Waiting to run
- 移除 ConfigManager 配置管理器类 - 移除 GameManager 全局单例管理器类 - 移除 NetworkManager 网络连接管理器类 - 移除 CharacterData 和 ItemData 数据模型类 - 移除 BagScene、BattleScene、LobbyScene 等场景脚本 - 移除 EncounterBubble 和 EventFeedPanel UI组件脚本 - 更新代理邀请文档中的服务器连接方式 - 更新同步状态表格中的代理任务分配信息 - 添加 MiMo 任务完成总结和审查修复记录
51 行
1.1 KiB
CSS
51 行
1.1 KiB
CSS
body {
|
|
cursor: default;
|
|
padding: 0;
|
|
border: 0;
|
|
margin: 0;
|
|
|
|
text-align: center;
|
|
background-color: white;
|
|
font-family: Helvetica, Verdana, Arial, sans-serif;
|
|
}
|
|
|
|
body, canvas, div {
|
|
outline: none;
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
-khtml-user-select: none;
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
/* Remove spin of input type number */
|
|
input::-webkit-outer-spin-button,
|
|
input::-webkit-inner-spin-button {
|
|
/* display: none; <- Crashes Chrome on hover */
|
|
-webkit-appearance: none;
|
|
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
|
|
}
|
|
|
|
canvas {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
}
|
|
|
|
#GameDiv {
|
|
margin: 0 auto;
|
|
position:relative;
|
|
border:5px solid black;
|
|
border-radius: 10px;
|
|
box-shadow: 0 5px 50px #333
|
|
}
|
|
|
|
#Cocos3dGameContainer, #GameCanvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
:root {
|
|
--safe-top: env(safe-area-inset-top);
|
|
--safe-right: env(safe-area-inset-right);
|
|
--safe-bottom: env(safe-area-inset-bottom);
|
|
--safe-left: env(safe-area-inset-left);
|
|
} |