Moved away inline css and added mobile rule to stretch the input wrapper closer to the edges of the screen

This commit is contained in:
2019-10-04 00:36:36 +02:00
parent 2e8795a317
commit 1d1a78608e

View File

@@ -73,10 +73,7 @@
<h2>No results found</h2>
<br />
<div style="display: flex;
width: 70%;
justify-content: center;"
v-if="editSearchQuery">
<div class="editQuery" v-if="editSearchQuery">
<seasonedInput text="Torrent query" icon="_torrents" @inputValue="(val) => editedSearchQuery = val" @enter="fetchTorrents(editedSearchQuery)" />
@@ -443,6 +440,19 @@ table {
}
.editQuery {
display: flex;
width: 70%;
justify-content: center;
@include mobile-only {
width: 90%;
}
}
.download {
&__icon {