Skip to content

Commit

Permalink
Merge pull request #1363 from jplag/report-viewer/remove-style
Browse files Browse the repository at this point in the history
  • Loading branch information
Kr0nox authored Nov 27, 2023
2 parents 3b8cc21 + ff489ed commit acd9651
Showing 1 changed file with 0 additions and 67 deletions.
67 changes: 0 additions & 67 deletions report-viewer/src/views/FileUploadView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -217,70 +217,3 @@ function continueWithLocal() {
navigateToOverview()
}
</script>

<style scoped>
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background: var(--primary-color-light);
}

.drop-container {
background: lightgrey;
border: dashed dodgerblue;
align-items: center;
justify-content: space-around;
border-radius: 10px;
padding: 2%;
}

.drop-container > p {
color: dodgerblue;
text-align: center;
}

.local-files-container {
display: flex;
flex-direction: column;
align-items: center;
}

.local-files-text {
font-weight: bold;
color: var(--on-background-color);
}

.local-files-button {
font-size: large;
background: var(--primary-color);
color: var(--on-primary-color);
font-weight: bold;
padding: 5%;
border: none;
border-radius: 10px;
box-shadow: var(--shadow-color) 2px 3px 3px;
}

.local-files-button:hover {
cursor: pointer;
background: var(--primary-color-dark);
}

input {
display: none;
}

label {
font-weight: bold;
font-size: larger;
background: #ececec;
border-radius: 10px;
box-shadow: #777777 2px 3px 3px;
padding: 2%;
margin-top: 1%;
}
</style>

0 comments on commit acd9651

Please sign in to comment.