mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-31 09:51:59 +08:00

* feat: api keys crud - integration v0.1 * feat: add test cases * fix: add review comments * feat: api integration and ui updates * feat: update test cases * feat: update expiriesAt request payload * feat: ui feedback updates * feat: api keys crud - integration v0.1 * feat: add test cases * fix: add review comments * feat: api integration and ui updates * feat: update test cases * feat: update expiriesAt request payload * feat: ui feedback updates * feat: handle light mode styles * feat: hide pagination on single page * feat: do not show last used if not present or 0 * feat: show tooltip on role --------- Co-authored-by: Rajat Dabade <rajat@signoz.io>
48 lines
752 B
SCSS
48 lines
752 B
SCSS
.periscope-btn-group {
|
|
display: inline-flex;
|
|
|
|
.ant-btn {
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
.periscope-btn {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
padding: 6px;
|
|
|
|
border: 1px solid var(--bg-slate-400, #1d212d);
|
|
background: var(--bg-ink-400, #121317);
|
|
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
|
|
color: var(--bg-vanilla-400, #c0c1c3);
|
|
|
|
&.ghost {
|
|
box-shadow: none;
|
|
border: none;
|
|
}
|
|
|
|
cursor: pointer;
|
|
|
|
&.primary {
|
|
color: #fff;
|
|
background-color: #4566d6;
|
|
box-shadow: 0 2px 0 rgba(62, 86, 245, 0.09);
|
|
}
|
|
}
|
|
|
|
.periscope-tab {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.lightMode {
|
|
.periscope-btn {
|
|
border-color: var(--bg-vanilla-300);
|
|
background: var(--bg-vanilla-100);
|
|
color: var(--bg-ink-200);
|
|
}
|
|
}
|