Commit 4598afd1 authored by Adam Parák's avatar Adam Parák 💬
Browse files

fix unwillful padding in composer

parent 4cd16f84
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ const Layout = () => {

  return (
    <div style={{ height: '100%', display: 'flex' }}>
      <div style={{ flex: 1 }}>
      <div style={{ flex: 1, position: 'relative', }}>
        <Outlet />
      </div>

+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ interface ContainerProps extends PropsWithChildren {
}

const Container: FC<ContainerProps> = ({ children, makeFullHeight, style }) => (
  <div style={{ position: 'relative', overflowY: 'auto', height: '100%' }}>
  <div style={{ overflowY: 'auto', height: '100%' }}>
    <div
      className={`${divContainer} ${makeFullHeight ? heighted : ''}`}
      style={style}