mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-22 18:06:35 +00:00
* feat(UI): sendfeedback is updated * chore(UI): config slack hook url is updated * fix(chore): button size is updated * fix(bug): user feedback is updated * chore(bug): z-index is fixed * fix(bug): applayout is updated * fix(bug): applayout is updated
24 lines
410 B
TypeScript
24 lines
410 B
TypeScript
import { Layout as LayoutComponent } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const Layout = styled(LayoutComponent)`
|
|
&&& {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
position: relative;
|
|
}
|
|
`;
|
|
|
|
export const Content = styled(LayoutComponent.Content)`
|
|
&&& {
|
|
margin: 0 1rem;
|
|
}
|
|
`;
|
|
|
|
export const Footer = styled(LayoutComponent.Footer)`
|
|
&&& {
|
|
text-align: center;
|
|
font-size: 0.7rem;
|
|
}
|
|
`;
|