first commit
This commit is contained in:
29
calcom/packages/embeds/embed-core/preview.html
Normal file
29
calcom/packages/embeds/embed-core/preview.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
.row {
|
||||
display: flex;
|
||||
}
|
||||
.cell-1 {
|
||||
border-right: 1px solid #ded9d9;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.cell-2 {
|
||||
margin: 10px;
|
||||
}
|
||||
.dark {
|
||||
background-color: rgb(16 16 16);
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
const searchParams = new URL(document.URL).searchParams;
|
||||
const embedType = searchParams.get("embedType");
|
||||
const calLink = searchParams.get("calLink");
|
||||
</script>
|
||||
</head>
|
||||
<script type="module" src="./src/preview.ts"></script>
|
||||
<body>
|
||||
<div id="my-embed" style="width: 100%; height: 90%; overflow: scroll"></div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user