25 lines
390 B
SCSS
25 lines
390 B
SCSS
@use 'variables' as vars;
|
|
|
|
.home {
|
|
&__content {
|
|
text-align: justify;
|
|
max-width: 850px;
|
|
|
|
img {
|
|
border-radius: 50px;
|
|
float: left;
|
|
margin: 0 24px 16px 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 500px) {
|
|
.home {
|
|
&__content {
|
|
img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|