feat(SW-3441): Add Hero image to sas landing page * feat(SW-3441): Add Hero image to sas landing page * feat(SW-3441): Code Optimise Approved-by: Joakim Jäderberg
19 lines
334 B
CSS
19 lines
334 B
CSS
.mainContent {
|
|
/* Calculate height for large screens and displays */
|
|
height: calc(100dvh - 402px);
|
|
min-height: 480px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
}
|
|
|
|
.backdrop {
|
|
position: absolute;
|
|
inset: 0;
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
object-fit: cover;
|
|
}
|