24 lines
266 B
SCSS
24 lines
266 B
SCSS
.hero {
|
|
width: 100%;
|
|
padding: 128px 0;
|
|
position: relative;
|
|
background: white;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
|
|
.text, .logo {
|
|
width: 400px;
|
|
margin: auto;
|
|
}
|
|
|
|
.logo {
|
|
img {
|
|
object-fit: contain;
|
|
}
|
|
}
|
|
|
|
.text {
|
|
|
|
}
|
|
}
|