mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
24bfa73ab6
+ change grid size for search page +
30 lines
526 B
Vue
30 lines
526 B
Vue
<template>
|
|
<div class="search-view">
|
|
<div class="scrollable">
|
|
<Main :isOnSearchPage="true" />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Main from "@/components/RightSideBar/Search/Main.vue";
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.search-view {
|
|
height: 100%;
|
|
// background-color: $black;
|
|
padding-top: 0;
|
|
margin-right: -1rem;
|
|
|
|
.scrollable {
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.search-results-grid {
|
|
grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
|
|
}
|
|
}
|
|
</style>
|