I have a project where I am creating a widget using Vuetify, and embedding it into another website in the following way:
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="component-styles.css">
</head>
<body>
<div style="height: 3000px; background-color: pink; opacity: 0.5;"></div>
<vue-widget style="position: fixed; bottom:0; right: 0; left: 0; z-index: 1000;"></vue-widget>
<script src="component.js"></script>
</body>
</html>
This is how the index.html page is structured:
https://i.sstatic.net/2nUal.png
I am looking to make a modification to my Vue widget so that the pink div is visible through its background, while keeping the button opaque. How can I achieve this?