import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLoader'; import styled from '@emotion/styled'; import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; import { BACKGROUND_LIGHT, BORDER_COMMON, BORDER_LIGHT, GRAY_SCALE, MOBILE_VIEWPORT, } from 'twenty-ui'; const StyledMainContainer = styled.div` background: ${BACKGROUND_LIGHT.noisy}; box-sizing: border-box; display: flex; flex: 1 1 auto; flex-direction: row; gap: 8px; min-height: 0; padding-left: 0; width: 100%; @media (max-width: ${MOBILE_VIEWPORT}px) { padding-left: 12px; padding-bottom: 0; } `; const StyledPanel = styled.div` background: ${BACKGROUND_LIGHT.primary}; border: 1px solid ${BORDER_LIGHT.color.medium}; border-radius: ${BORDER_COMMON.radius.md}; height: 100%; overflow: auto; width: 100%; `; const StyledHeaderContainer = styled.div` flex: 1; `; const StyledRightPanelContainer = styled.div` display: flex; flex-direction: column; width: 100%; `; const StyledRightPanelFlexContainer = styled.div` display: flex; flex-direction: row; justify-content: flex-end; align-items: center; height: 32px; margin-bottom: 12px; `; const StyledSkeletonHeaderLoader = () => { return ( ); }; const StyledSkeletonAddLoader = () => { return ( ); }; const RightPanelSkeleton = () => ( ); export const RightPanelSkeletonLoader = () => ( );