mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-26 05:44:28 +08:00
19 lines
250 B
TypeScript
19 lines
250 B
TypeScript
import { createGlobalStyle } from 'styled-components';
|
|
|
|
const GlobalStyles = createGlobalStyle`
|
|
#root,
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
`;
|
|
|
|
export default GlobalStyles;
|