Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Aug 6, 2024
1 parent 0402ab7 commit 9185381
Show file tree
Hide file tree
Showing 6 changed files with 175 additions and 208 deletions.
18 changes: 14 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
{
"files.autoSave": "afterDelay",
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnSave": true,
"cSpell.words": [
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll": false,
},
"editor.formatOnSave": true,
"eslint.format.enable": true,

"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},

"cSpell.words": [
"gedepubliceerd",
"depubliceren",
"Depubliceren",
Expand All @@ -11,5 +21,5 @@
"opencatalogi",
"pinia",
"Toegangs"
]
],
}
32 changes: 32 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,35 @@
.errorMessage {
color: var(--color-error);
}


/* File drag and drop */

.filesListDragDropNotice{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
min-height: 113px;
margin: 0;
user-select: none;
color: var(--color-text-maxcontrast);
background-color: var(--color-main-background);
border-color: #000;
}

.filesListDragDropNoticeWrapper{
display: flex;
align-items: center;
justify-content: center;
height: 15vh;
max-height: 70%;
padding: 0 5vw;
border: 2px var(--color-border-dark) dashed;
border-radius: var(--border-radius-large);
}

.filesListDragDropNoticeTitle{
margin-left: 16px;
color: inherit;
}
Loading

0 comments on commit 9185381

Please sign in to comment.