mirror of
https://github.com/janispritzkau/obsidian-model-viewer.git
synced 2026-07-22 12:30:23 +00:00
28 lines
515 B
CSS
28 lines
515 B
CSS
.model-viewer-embed {
|
|
position: relative;
|
|
display: inline-block;
|
|
border-radius: var(--radius-m);
|
|
background-color: var(--background-primary-alt);
|
|
max-width: 100%;
|
|
}
|
|
|
|
.model-viewer-embed model-viewer {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.model-viewer-variant-dropdown {
|
|
position: absolute;
|
|
inset: var(--size-4-4);
|
|
place-self: end start;
|
|
z-index: 1;
|
|
}
|
|
|
|
.model-viewer-animation-overlay {
|
|
position: absolute;
|
|
inset: var(--size-4-4);
|
|
place-self: start end;
|
|
z-index: 1;
|
|
display: flex;
|
|
gap: var(--size-4-2);
|
|
}
|