camera-modal.css 360 B

123456789101112131415161718192021222324
  1. :host {
  2. z-index: 1000;
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. width: 100%;
  7. height: 100%;
  8. display: flex;
  9. contain: strict;
  10. }
  11. .wrapper {
  12. flex: 1;
  13. display: flex;
  14. align-items: center;
  15. justify-content: center;
  16. background-color: rgba(0, 0, 0, 0.15);
  17. }
  18. .content {
  19. box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  20. width: 600px;
  21. height: 600px;
  22. }