This commit is contained in:
Roman Pyrih
2026-05-26 15:43:25 +02:00
parent 0e6b931b84
commit f4eb901eda
12 changed files with 740 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
.hashtalk-3d-element {
width: 100%;
min-height: 160px;
height: 520px;
position: relative;
overflow: hidden;
background: transparent;
}
.hashtalk-3d-element canvas {
width: 100%;
height: 100%;
display: block;
}
.hashtalk-3d-element--error::before {
content: "3D model loading error";
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
opacity: 0.7;
}
@media (max-width: 767px) {
.hashtalk-3d-element {
height: 360px;
}
}