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