mirror of
https://github.com/langbot-app/LangBot.git
synced 2025-11-25 19:37:36 +08:00
39 lines
755 B
CSS
39 lines
755 B
CSS
.pageContainer {
|
|
width: 100%;
|
|
height: calc(100% - 30px);
|
|
}
|
|
|
|
.marketComponentBody {
|
|
width: 100%;
|
|
height: calc(100% - 60px);
|
|
}
|
|
|
|
.pluginListContainer {
|
|
align-self: flex-start;
|
|
justify-self: flex-start;
|
|
width: calc(100% - 60px);
|
|
height: 100%;
|
|
max-height: 100%;
|
|
margin: auto;
|
|
display: grid;
|
|
grid-template-rows: repeat(auto-fill, minmax(160px, 1fr));
|
|
grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
|
|
gap: 15px;
|
|
justify-items: center;
|
|
align-items: center;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.modalTitle {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.modalBody {
|
|
height: 80px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
}
|