mirror of
https://github.com/SigNoz/signoz.git
synced 2026-07-08 07:30:40 +01:00
* feat(authz): add devtools for authz * fix(authz): add missing allowed/deniedPermissions to test mocks * fix(pnpm-lock): keep updated * fix(pr): address comments * fix(pr): use our button component * fix(pr): split modal in smaller components
29 lines
404 B
CSS
29 lines
404 B
CSS
.container {
|
|
position: fixed;
|
|
top: 12px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
z-index: 9998;
|
|
pointer-events: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
.button {
|
|
box-shadow:
|
|
0 4px 12px rgb(0 0 0 / 15%),
|
|
0 0 0 1px rgb(0 0 0 / 5%);
|
|
}
|
|
|
|
.badge {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.closeButton {
|
|
border-radius: 4px;
|
|
box-shadow:
|
|
0 4px 12px rgb(0 0 0 / 15%),
|
|
0 0 0 1px rgb(0 0 0 / 5%);
|
|
}
|