feat: 游戏列表组件+基础样式

This commit is contained in:
2026-06-18 10:15:13 +08:00
parent 33c2b31117
commit 3bc3cce62a
6 changed files with 258 additions and 10 deletions

View File

@@ -2,4 +2,52 @@
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
height: 100%;
width: 100%;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
line-height: 1.5;
color: #333;
background-color: #fff;
}
#app {
height: 100%;
}
a {
color: inherit;
text-decoration: none;
}
ul,
ol {
list-style: none;
}
img {
max-width: 100%;
height: auto;
display: block;
}
button {
cursor: pointer;
border: none;
background: none;
font: inherit;
color: inherit;
}
input {
font: inherit;
color: inherit;
}