remove pagination

This commit is contained in:
geoffrey45
2021-12-26 16:42:20 +03:00
parent 26ab354a1d
commit c5670e0f5f
19 changed files with 117 additions and 129 deletions
+23 -6
View File
@@ -24,8 +24,7 @@
type="range"
:value="pos"
min="0"
max="100"
step="1"
max="1000"
@change="seek()"
/>
</div>
@@ -85,7 +84,7 @@ export default {
pos,
seek,
isPlaying,
fmtMSS
fmtMSS,
};
},
};
@@ -97,7 +96,14 @@ export default {
height: 14rem;
margin-top: 1rem;
padding: 0.5rem;
background-color: rgb(0, 0, 0);
background: rgb(14, 14, 14);
background: linear-gradient(
326deg,
rgb(0, 0, 0) 0%,
rgb(10, 10, 10) 13%,
rgba(0, 0, 0, 1) 43%,
rgba(0, 0, 0, 1) 100%
);
display: grid;
grid-template-rows: 3fr 1fr;
@@ -130,7 +136,17 @@ export default {
width: 100%;
height: 0.25rem;
cursor: pointer;
background: #3071a9;
background: #1488cc; /* fallback for old browsers */
background: -webkit-linear-gradient(
to right,
#1488cc,
#2b32b2
); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(
to right,
#1488cc,
#2b32b2
); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
input::-webkit-slider-thumb {
@@ -255,12 +271,13 @@ export default {
#title {
margin: 0;
width: 13rem;
width: 22rem;
color: #fff;
}
#artist {
font-size: small;
width: 22rem;
color: rgba(255, 255, 255, 0.712);
}
+4 -1
View File
@@ -3,7 +3,7 @@
<input
type="search"
id="search"
placeholder="Michael Jackson"
placeholder="find your music"
v-model="query"
/>
<div class="scrollable" :class="{ v0: !is_hidden, v1: is_hidden }">
@@ -96,6 +96,9 @@ export default {
</script>
<style>
.right-search {
z-index: 10;
}
.right-search .v0 {
max-height: 0em;
transition: max-height 0.5s ease;