mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-28 15:48:12 +00:00
* fix(FE/Logs): fix all logs not visible on scrolling * fix(FE/logs): fix scroll behaviour in live logs * refactor(FE/logs): replaced StyledComponents with scss --------- Co-authored-by: Rajat Dabade <rajat@signoz.io>
21 lines
366 B
TypeScript
21 lines
366 B
TypeScript
import { Card } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const Container = styled.div`
|
|
overflow-x: hidden;
|
|
width: 100%;
|
|
margin-bottom: 1rem;
|
|
margin-top: 0.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
`;
|
|
|
|
export const Heading = styled(Card)`
|
|
margin-bottom: 0.1rem;
|
|
height: 32px;
|
|
.ant-card-body {
|
|
padding: 0.3rem 0.5rem;
|
|
}
|
|
`;
|