mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-24 02:46:27 +00:00
21 lines
352 B
SCSS
21 lines
352 B
SCSS
.create-alert-v2-container {
|
|
background-color: var(--bg-ink-500);
|
|
padding-bottom: 100px;
|
|
}
|
|
|
|
.lightMode {
|
|
.create-alert-v2-container {
|
|
background-color: var(--bg-vanilla-100);
|
|
}
|
|
}
|
|
|
|
.sticky-page-spinner {
|
|
position: fixed;
|
|
inset: 0;
|
|
display: grid;
|
|
place-items: center;
|
|
background: rgba(0, 0, 0, 0.35);
|
|
z-index: 10000;
|
|
pointer-events: auto;
|
|
}
|