add context menu options placeholder function

This commit is contained in:
geoffrey45
2022-07-12 18:54:06 +03:00
parent e538b0d4d7
commit 55215e0ad5
2 changed files with 18 additions and 4 deletions
+5 -3
View File
@@ -21,7 +21,7 @@
import { paths } from "@/config";
defineProps<{
bio: string;
bio: string | null;
images: {
artist: string;
album: string;
@@ -65,12 +65,14 @@ defineProps<{
width: 10rem;
}
$rectpos: calc(50% - 5rem);
.rect {
width: 10rem;
height: 10rem;
position: absolute;
bottom: 0rem;
left: 7rem;
left: $rectpos;
transform: rotate(15deg) translate(-1rem, 1rem);
z-index: 1;
transition: all 0.5s ease-in-out;
@@ -85,8 +87,8 @@ defineProps<{
position: absolute;
width: 7rem;
height: 7rem;
left: 15rem;
bottom: 0;
left: calc($rectpos + 7rem);
border-radius: 50%;
box-shadow: 0 0 2rem rgb(0, 0, 0);
transition: all 0.25s ease-in-out;