This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: overlay prop not expanding window

+4
+2
src/webapp/features/composer/components/composerDrawer/ComposerDrawer.tsx
··· 122 122 > 123 123 {(styles) => ( 124 124 <Overlay 125 + fixed={true} 125 126 blur={DEFAULT_OVERLAY_PROPS.blur} 126 127 gradient={DEFAULT_OVERLAY_PROPS.gradient} 128 + inset={DEFAULT_OVERLAY_PROPS.inset} 127 129 style={{ 128 130 ...styles, 129 131 zIndex: 101,
+2
src/webapp/styles/overlays.ts
··· 1 1 export const DEFAULT_OVERLAY_PROPS = { 2 + inset: 0, 3 + zIndex: 101, 2 4 blur: 3, 3 5 gradient: 4 6 'linear-gradient(0deg, rgba(204, 255, 0, 0.5), rgba(255, 255, 255, 0.5))',