30 lines
562 B
CSS
30 lines
562 B
CSS
.container {
|
|
background-color: var(--mantine-color-default-hover);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.header {
|
|
transition: background-color 0.15s ease;
|
|
}
|
|
|
|
.header:hover {
|
|
background-color: var(--mantine-color-default-hover);
|
|
}
|
|
|
|
.content {
|
|
padding: 0 var(--mantine-spacing-xs) var(--mantine-spacing-xs);
|
|
border-top: 1px solid var(--mantine-color-default-border);
|
|
}
|
|
|
|
.section {
|
|
margin-top: var(--mantine-spacing-xs);
|
|
}
|
|
|
|
.code {
|
|
font-size: var(--mantine-font-size-xs);
|
|
white-space: pre-wrap;
|
|
word-break: break-all;
|
|
max-height: 200px;
|
|
overflow-y: auto;
|
|
}
|