instantphotoframe
Version:
Instant film front-end component made easy.
27 lines (23 loc) • 418 B
CSS
.instant-container {
display: grid;
grid-template-columns: 20fr;
grid-template-rows: 20fr;
overflow: hidden;
}
.instant-frame {
max-width: 100%;
max-height: 100%;
grid-row-start: 1;
grid-column-start: 1;
z-index: 1;
}
.instant-image {
grid-row-start: 1;
grid-column-start: 1;
max-width: 100%;
max-height: 100%;
z-index: 0;
}
.a-container {
max-width: 100%;
}