2023-04-24 20:58:57 +03:00
|
|
|
|
2022-05-10 01:34:02 +03:00
|
|
|
.spinner {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
2023-04-24 20:58:57 +03:00
|
|
|
padding: 1.25rem;
|
2022-08-30 09:17:12 +03:00
|
|
|
background-color: var(--theme-color-components-modal-content-background);
|
2022-09-09 07:44:52 +03:00
|
|
|
color: var(--theme-color-components-modal-content-text);
|
2023-02-14 20:08:54 +03:00
|
|
|
|
2023-04-16 05:58:52 +03:00
|
|
|
h1:first-child,
|
|
|
|
h2:first-child,
|
|
|
|
h3:first-child {
|
|
|
|
margin-top: unset;
|
|
|
|
}
|
|
|
|
}
|
2023-04-24 20:58:57 +03:00
|
|
|
|
|
|
|
.modal {
|
|
|
|
:global(.ant-modal-header) {
|
|
|
|
color: var(--theme-color-components-modal-header-text);
|
|
|
|
font-family: var(--theme-text-display-font-family);
|
|
|
|
padding: 1rem 1.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.ant-modal-title) {
|
|
|
|
color: var(--theme-color-components-modal-header-text);
|
|
|
|
font-size: 17px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.ant-modal-body) {
|
|
|
|
overflow: auto;
|
|
|
|
border-radius: 0 0 var(--theme-rounded-corners) var(--theme-rounded-corners);
|
|
|
|
}
|
|
|
|
:global(.ant-modal-close-x) {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
:global(.ant-modal) {
|
|
|
|
color: var(--theme-color-components-text-on-light);
|
|
|
|
h1 {
|
|
|
|
color: var(--theme-color-components-text-on-light);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
:global(.ant-modal-content) {
|
|
|
|
box-shadow: 3px 15px 15px -3px rgba(0, 0, 0, 0.15), 0px 4px 6px -2px rgba(0, 0, 0, 0.08);
|
|
|
|
}
|
|
|
|
}
|