mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-18 07:51:29 +08: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
27 lines
471 B
TypeScript
27 lines
471 B
TypeScript
import { Button as ButtonComponent } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const RightActionContainer = styled.div`
|
|
&&& {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
`;
|
|
|
|
export const ButtonContainer = styled.div`
|
|
&&& {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 1rem;
|
|
margin-bottom: 1rem;
|
|
padding-right: 1rem;
|
|
}
|
|
`;
|
|
|
|
export const Button = styled(ButtonComponent)`
|
|
&&& {
|
|
margin-left: 1rem;
|
|
}
|
|
`;
|