responsiveness improvements

+ extract track context menu handler into a composable
This commit is contained in:
geoffrey45
2022-08-13 17:10:48 +03:00
parent a32d8fe66c
commit 1f374eeda1
23 changed files with 274 additions and 249 deletions
+17 -1
View File
@@ -65,7 +65,7 @@ const emit = defineEmits<{
(event: "resetBottomPadding"): void;
}>();
const albumheaderthing = ref<HTMLElement>(null);
const albumheaderthing = ref<any>(null);
const imguri = paths.images.thumb;
const nav = useNavStore();
@@ -121,6 +121,9 @@ useVisibility(albumheaderthing, handleVisibilityState);
justify-content: flex-end;
.top {
.h {
opacity: 0.75;
}
.title {
font-size: 2.5rem;
font-weight: 600;
@@ -146,5 +149,18 @@ useVisibility(albumheaderthing, handleVisibilityState);
}
}
}
@include for-desktop-down {
grid-template-columns: 1fr;
.art > img {
height: 6rem;
box-shadow: 0 0 1rem $black;
}
.info > .top > .title {
font-size: 2rem;
}
}
}
</style>