mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 03:15:06 +08:00
23 lines
490 B
CSS
23 lines
490 B
CSS
.configPageContainer {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.cardContainer {
|
|
width: 420px;
|
|
height: 220px;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.botListContainer {
|
|
align-self: flex-start;
|
|
justify-self: flex-start;
|
|
width: calc(100% - 60px);
|
|
margin: auto;
|
|
display: grid;
|
|
grid-template-rows: repeat(auto-fill, minmax(220px, 1fr));
|
|
grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
|
|
gap: 15px;
|
|
justify-items: center;
|
|
align-items: center;
|
|
} |