SHX-Theme/snippets/shx-video-base.liquid

32 lines
499 B
Plaintext

{% assign content_type = content_type | default: 'awdawd' %}
{% if content_type == 'wasd' %}
{% elsif content_type == "init" %}
{% style %}
.shx-video {
position: relative;
width: 100%;
overflow: hidden;
}
.shx-video__wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.shx-video__wrapper video {
width: 100%;
height: 100%;
object-fit: cover;
}
{% endstyle %}
{% endif %}