Skip to content

Commit

Permalink
move tp
Browse files Browse the repository at this point in the history
  • Loading branch information
Wellheor1 committed Nov 10, 2024
1 parent ca3192c commit 5b399bb
Showing 1 changed file with 22 additions and 19 deletions.
41 changes: 22 additions & 19 deletions l2-frontend/src/components/UploadFile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,6 @@
:options="currentFileForms"
placeholder="Выберите структуру файла"
/>
<i
v-tippy="{
html: '#tp',
arrow: true,
reactive: true,
interactive: true,
animation: 'fade',
duration: 0,
theme: 'light',
placement: 'bottom',
trigger: 'click',
}"
class="fa fa-info-circle info"
/>
</div>
<h5
v-else-if="noSupportedFileForms"
Expand All @@ -58,8 +44,22 @@
</div>
<div
v-if="selectedForm"
class="margin-item"
class="margin-item flex"
>
<i
v-tippy="{
html: '#tp',
arrow: true,
reactive: true,
interactive: true,
animation: 'fade',
duration: 0,
theme: 'light',
placement: 'bottom',
trigger: 'click',
}"
class="fa fa-info-circle info"
/>
<input
ref="fileInput"
style="margin-top: 15px"
Expand All @@ -71,7 +71,7 @@
</div>
<div
v-if="fileIsSelected"
class="margin-item"
class="margin-item flex"
>
<button
class="btn btn-blue-nb"
Expand Down Expand Up @@ -112,7 +112,7 @@

<div
id="tp"
class="tp"
:class="props.showResults ? 'tp-high' : 'tp'"
>
{{ currentFormsInfo }}
</div>
Expand Down Expand Up @@ -326,9 +326,12 @@ const handleFileUpload = () => {
display: flex;
}
.info {
padding: 12px 12px
padding: 18px 12px
}
.tp {
width: 300px;
width: 788px;
}
.tp-high {
width: 978px;
}
</style>

0 comments on commit 5b399bb

Please sign in to comment.