support : integration except products

This commit is contained in:
isUnknown 2025-11-04 08:33:39 +01:00
parent 904dd353e8
commit ba0df6b5cb
44 changed files with 2146 additions and 5 deletions

View file

@ -0,0 +1,53 @@
.player__container {
width: 100%;
height: 100%;
.player__element {
width: 100%;
height: 100%;
display: grid;
place-items: center;
overflow: hidden;
// display: none;
.player__btn {
svg {
fill: var(--color-txt);
width: 100%;
}
position: absolute;
width: 60px;
height: 60px;
cursor: pointer;
}
img,
video {
width: 100%;
height: 100%;
object-fit: cover;
}
}
.player__iframe {
display: none;
width: 100%;
height: 100%;
iframe{
width: 100%;
height: 100%;
}
}
}