mirror of
https://github.com/docmost/docmost.git
synced 2026-05-21 01:04:39 +08:00
57efb91bd3
* feat: ai chat * feat: ai chat * sync * cleanup * view space button
29 lines
636 B
CSS
29 lines
636 B
CSS
.wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: var(--mantine-spacing-xl) var(--mantine-spacing-md) var(--mantine-spacing-lg);
|
|
}
|
|
|
|
.heading {
|
|
font-size: 1.75rem;
|
|
font-weight: 600;
|
|
color: light-dark(var(--mantine-color-gray-8), var(--mantine-color-dark-0));
|
|
text-align: center;
|
|
margin: 0;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: var(--mantine-font-size-sm);
|
|
color: light-dark(var(--mantine-color-gray-6), var(--mantine-color-dark-2));
|
|
text-align: center;
|
|
margin-top: 6px;
|
|
margin-bottom: var(--mantine-spacing-lg);
|
|
}
|
|
|
|
.inputContainer {
|
|
width: 100%;
|
|
max-width: 640px;
|
|
}
|