mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
25 lines
583 B
TypeScript
25 lines
583 B
TypeScript
|
|
import { blue } from '@ant-design/colors';
|
||
|
|
import { Col, Row } from 'antd';
|
||
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const RawLogViewContainer = styled(Row)<{ $isDarkMode: boolean }>`
|
||
|
|
width: 100%;
|
||
|
|
font-weight: 700;
|
||
|
|
font-size: 0.625rem;
|
||
|
|
line-height: 1.25rem;
|
||
|
|
|
||
|
|
transition: background-color 0.2s ease-in;
|
||
|
|
|
||
|
|
&:hover {
|
||
|
|
background-color: ${({ $isDarkMode }): string =>
|
||
|
|
$isDarkMode ? 'rgba(255,255,255,0.1)' : 'rgba(0, 0, 0, 0.1)'};
|
||
|
|
}
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const ExpandIconWrapper = styled(Col)`
|
||
|
|
color: ${blue[6]};
|
||
|
|
padding: 0.25rem 0.375rem;
|
||
|
|
cursor: pointer;
|
||
|
|
font-size: 12px;
|
||
|
|
`;
|