mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-23 02:17:11 +00:00
* fix: properly render newline and tab in log details * fix: change font family and add tab size to properly render \t * feat: apply Geist Mono font to the logs
15 lines
299 B
TypeScript
15 lines
299 B
TypeScript
import { Card } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const CardStyled = styled(Card)`
|
|
border: none !important;
|
|
position: relative;
|
|
margin-bottom: 16px;
|
|
.ant-card-body {
|
|
height: 200px;
|
|
min-height: 200px;
|
|
padding: 0 16px 16px 16px;
|
|
font-family: 'Geist Mono';
|
|
}
|
|
`;
|