sparkletown/sparkle

View on GitHub
src/components/templates/Embeddable/Embeddable.scss

Summary

Maintainability
Test Coverage
@import "scss/constants.scss";

.embeddable {
  height: 100%;
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;

  display: flex;
  justify-content: center;
  align-items: center;

  &__iframe {
    height: 90%;
    width: 90%;

    border: none;
    z-index: z(embeddable-iframe);
  }
}