Rounded filemanager

This commit is contained in:
Connor Yoh 2025-08-22 13:19:01 +01:00
parent 577a866bf0
commit aaa83541c4

View File

@ -111,7 +111,7 @@ const FileManager: React.FC<FileManagerProps> = ({ selectedTool }) => {
onClose={closeFilesModal} onClose={closeFilesModal}
size={isMobile ? "100%" : "auto"} size={isMobile ? "100%" : "auto"}
centered centered
radius={30} radius="md"
className="overflow-hidden p-0" className="overflow-hidden p-0"
withCloseButton={false} withCloseButton={false}
styles={{ styles={{
@ -144,7 +144,7 @@ const FileManager: React.FC<FileManagerProps> = ({ selectedTool }) => {
height: '100%', height: '100%',
width: '100%', width: '100%',
border: 'none', border: 'none',
borderRadius: '30px', borderRadius: 'var(--radius-md)',
backgroundColor: 'var(--bg-file-manager)' backgroundColor: 'var(--bg-file-manager)'
}} }}
styles={{ styles={{