ソースを参照

fixed some small design bugs

FE_dev
Dzenis Hadzifejzovic 2年前
コミット
353e95e296
2個のファイルの変更7行の追加2行の削除
  1. 6
    1
      src/components/Files/TreeViewFiles.js
  2. 1
    1
      src/pages/FilesPage/AddFile.js

+ 6
- 1
src/components/Files/TreeViewFiles.js ファイルの表示

@@ -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 ファイルの表示

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

読み込み中…
キャンセル
保存