Selaa lähdekoodia

fixed some small design bugs

FE_dev
Dzenis Hadzifejzovic 2 vuotta sitten
vanhempi
commit
353e95e296
2 muutettua tiedostoa jossa 7 lisäystä ja 2 poistoa
  1. 6
    1
      src/components/Files/TreeViewFiles.js
  2. 1
    1
      src/pages/FilesPage/AddFile.js

+ 6
- 1
src/components/Files/TreeViewFiles.js Näytä tiedosto

@@ -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 Näytä tiedosto

@@ -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>

Loading…
Peruuta
Tallenna