add minimap

This commit is contained in:
2024-12-23 10:08:06 +09:00
parent e23978ea90
commit 604368b52c
5 changed files with 46 additions and 12 deletions
+16
View File
@@ -27,6 +27,7 @@
.debug-panel {
position: fixed;
opacity: 0.2;
inset: 0 0 auto auto;
border-bottom-left-radius: 10px;
padding: 10px 10px 20px 20px;
@@ -35,6 +36,21 @@
border-top: none;
border-right: none;
width: 400px;
transition-duration: 0.2s;
transition-property: opacity;
}
.debug-panel:hover {
opacity: 1;
}
.minimap {
position: fixed;
inset: auto 0 0 auto;
border: 5px solid gray;
border-top-left-radius: 10px;
border-bottom: none;
border-right: none;
}
</style>
</head>