File size: 309 Bytes
5f07a23
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.image-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000; /* or #fff for white bars */
}

.canvas-element {
  /* This ensures the image maintains its aspect ratio */
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}