import { css } from '@rocket.chat/css-in-js'; import { Box } from '@rocket.chat/fuselage'; import type { AllHTMLAttributes } from 'react'; const MainContent = ({ className, ...props }: Omit, 'is'>) => { const customCSS = css` @media print { overflow: visible !important; /* 1 */ height: auto !important; /* 1 */ max-height: none !important; /* 1 */ flex-shrink: 0 !important; /* 1 */ } @media (width <= 767px) { transition: right 0.25s cubic-bezier(0.5, 0, 0.1, 1), transform 0.1s linear; will-change: transform; } `; return ( ); }; export default MainContent;