Open SimonEnsemble opened 1 year ago
open "assets\css\main.scss"
change
.aboutme {
@include breakpoint(medium) {
max-width: 30rem;
margin-top: 5.5rem;
img {
float: none;
}
}
}
@include mobile-only {
margin-top: 2rem;
margin-left: 1rem;
margin-right: 1rem;
}
to
.aboutme {
@include breakpoint(medium) {
max-width: 30rem;
margin-top: 5.5rem;
img {
float: none;
}
}
@include mobile-only {
margin-top: 2rem;
margin-left: 1rem;
margin-right: 1rem;
}
}
with the new version of jekyll, the site does not launch upon
jekyll serve
.