pal-sig afc0559456
feat(UI): sendfeedback is updated (#416)
* 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
2021-12-02 20:12:38 +05:30

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;
}
`;