mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-28 15:48:12 +00:00
* feat: update sidebar and base theme styles * feat: update sidebar items and styles * feat: wire up logs navigation and update user settings page * feat: update styles to handle light mode, add full view header * feat: update onboarding header and styles * feat: remove unused routes * feat: handle sidebar collapse * feat: show pointer on logo hover * feat: fix logs module navigations * feat: update logo click route * feat: update entity name color to primary in application and dashboard tables * feat: update sidebar item styles * feat: update collapse icon and styles * fix: name not updated in menu on change * fix: show invite members nav item * fix: open invite members modal on invite team member nav item click
54 lines
778 B
SCSS
54 lines
778 B
SCSS
@import '@signozhq/design-tokens';
|
|
|
|
.app-layout {
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
.app-content {
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
}
|
|
|
|
.isDarkMode {
|
|
.app-layout {
|
|
.app-content {
|
|
background: #0b0c0e;
|
|
}
|
|
}
|
|
}
|
|
|
|
.isLightMode {
|
|
.app-layout {
|
|
.app-content {
|
|
background: #ffffff;
|
|
}
|
|
}
|
|
}
|
|
|
|
.trial-expiry-banner {
|
|
padding: 8px;
|
|
background-color: #f25733;
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.upgrade-link {
|
|
padding: 0px;
|
|
padding-right: 4px;
|
|
display: inline !important;
|
|
color: white;
|
|
text-decoration: underline;
|
|
text-decoration-color: white;
|
|
text-decoration-thickness: 2px;
|
|
text-underline-offset: 2px;
|
|
|
|
&:hover {
|
|
color: white;
|
|
text-decoration: underline;
|
|
text-decoration-color: white;
|
|
text-decoration-thickness: 2px;
|
|
text-underline-offset: 2px;
|
|
}
|
|
}
|