30 lines
480 B
SCSS
30 lines
480 B
SCSS
@use "variables" as vars;
|
|
|
|
.home {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
align-items: center;
|
|
|
|
&__content {
|
|
text-align: justify;
|
|
max-width: 850px;
|
|
|
|
img {
|
|
border-radius: 16px;
|
|
float: left;
|
|
margin: 0 24px 16px 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 500px) {
|
|
.home {
|
|
&__content {
|
|
img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|