Przeglądaj źródła

fixed some small design bugs

FE_dev
Dzenis Hadzifejzovic 2 lat temu
rodzic
commit
353e95e296

+ 6
- 1
src/components/Files/TreeViewFiles.js Wyświetl plik

@@ -36,7 +36,12 @@ function TreeViewFiles({ onSelectCategory }) {
aria-label="rich object"
defaultCollapseIcon={<ExpandMoreIcon />}
defaultExpandIcon={<ChevronRightIcon />}
sx={{ flexGrow: 1, overflowY: "auto" }}
sx={{
flexGrow: 1,
overflowY: "auto",
zIndex: 100000,
position: "relative",
}}
>
{renderTree(category)}
</TreeView>

+ 1
- 1
src/pages/FilesPage/AddFile.js Wyświetl plik

@@ -185,7 +185,7 @@ const AddFile = ({ history }) => {
<img src={uploadIcon} />
<div className="uploadCV-input-sub-container">
{pdfFile !== null ? (
<p>{pdfFile.name}</p>
<p style={{ maxWidth: "80%" }}>{pdfFile.name}</p>
) : (
<>
<p>

Ładowanie…
Anuluj
Zapisz