30 lines
531 B
CSS
30 lines
531 B
CSS
.shared-app-settings-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
padding: 16px;
|
|
min-height: 100%;
|
|
background: #f7f8fb;
|
|
}
|
|
|
|
.shared-app-settings-page--loading {
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.shared-app-settings-page__grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 16px;
|
|
}
|
|
|
|
.shared-app-settings-page .ant-card {
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.shared-app-settings-page .ant-card-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|