mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-08 06:46:02 +00:00
21 lines
357 B
CSS
21 lines
357 B
CSS
.pageContainer {
|
|
width: 100%;
|
|
}
|
|
|
|
.marketComponentBody {
|
|
width: 100%;
|
|
height: calc(100% - 60px);
|
|
}
|
|
|
|
.pluginListContainer {
|
|
width: 100%;
|
|
padding-left: 0.8rem;
|
|
padding-right: 0.8rem;
|
|
padding-top: 2rem;
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
|
|
gap: 2rem;
|
|
justify-items: stretch;
|
|
align-items: start;
|
|
}
|