26 lines
329 B
CSS
26 lines
329 B
CSS
|
|
.features {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 2rem 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.featureSvg {
|
|
height: 200px;
|
|
width: 200px;
|
|
}
|
|
|
|
.flexGrowSection {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.introVideo {
|
|
flex: 1 1 auto;
|
|
width: 100%;
|
|
height: 100px;
|
|
object-fit: cover;
|
|
} |