User:Selfice/管理员工具箱/styles.css:修订间差异

无编辑摘要
无编辑摘要
第9行: 第9行:
}
}
.list-container > ul{
.list-container > ul{
display: flex;
display: grid;
flex-direction: row;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* 自动分配列 */
flex-wrap: wrap;
gap: 16px;
justify-content: flex-start;
}
}
.list-container > ul > li {
.list-container > ul > li {
margin: 0.1em;
box-sizing: border-box;
flex: 1 1 calc(25% - 16px);
border: 1px solid #ddd;
border-radius: 8px;
background-color: #f9f9f9;
}
}