Improve flash screen board image styling

- Remove background and border-radius from board image
- Scale image to 2x for better visibility
- Use object-fit: contain to preserve aspect ratio
This commit is contained in:
SuperKali
2025-12-13 18:25:26 +01:00
parent b2c08c7f31
commit 5812ef5e48

View File

@@ -29,10 +29,9 @@
.flash-board-image {
width: 100px;
height: 100px;
border-radius: 10px;
object-fit: cover;
background: var(--bg-secondary);
object-fit: contain;
flex-shrink: 0;
transform: scale(2);
}
.flash-info {