18 lines
256 B
CSS
18 lines
256 B
CSS
|
|
.banner--header {
|
||
|
|
height: 12rem;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
width: 100%;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.banner--header img {
|
||
|
|
min-height: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 767px) {
|
||
|
|
.banner--header {
|
||
|
|
height: 8rem;
|
||
|
|
}
|
||
|
|
}
|