mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-27 15:18:08 +00:00
* feat: export panel in logs explorer is added * chore: notification is updated when dashboard id is not found while updating * fix: error handling for export panel * fix: layout gap * refactor: remove log * fix: updating log page from update button * fix: redirect with correct operator * fix: redirect wioth query data * fix: refetch list --------- Co-authored-by: Yevhen Shevchenko <y.shevchenko@seedium.io>
16 lines
341 B
TypeScript
16 lines
341 B
TypeScript
import { Tabs } from 'antd';
|
|
import { themeColors } from 'constants/theme';
|
|
import styled from 'styled-components';
|
|
|
|
export const TabsStyled = styled(Tabs)`
|
|
& .ant-tabs-nav {
|
|
background-color: ${themeColors.lightBlack};
|
|
}
|
|
`;
|
|
|
|
export const ActionsWrapper = styled.div`
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-bottom: 1rem;
|
|
`;
|