redesign the load more button to match other buttons

This commit is contained in:
geoffrey45
2022-08-03 14:07:53 +03:00
parent 2b6b4078fa
commit 7b2e162ed4
9 changed files with 23 additions and 57 deletions
+5 -9
View File
@@ -42,6 +42,11 @@ import TracksGrid from "./TracksGrid.vue";
font-size: 2rem;
color: $white;
}
.search-results-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0.75rem;
}
.input {
display: flex;
@@ -49,13 +54,4 @@ import TracksGrid from "./TracksGrid.vue";
position: relative;
}
}
.right-search .scrollable {
overflow-y: auto;
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
}
}
</style>