Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

About page responsiveness issue is solved, issue #771 is solved #802

Merged
merged 1 commit into from
Nov 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,31 @@ <h2>Subscription Successful!</h2>
animation: pulse 1.5s infinite;
/* Pulse on hover */
}
@media (max-width: 768px) {
.about-content-first {
display: flex;
flex-direction: column-reverse;
gap: 20px;
margin-bottom: 0;
}
.about-content-second {
display: flex;
flex-direction: column-reverse;
gap: 20px;
text-align: center;
}
#div2{
margin-left: 0;
margin-bottom: 12px;
}
#div3{
margin-bottom: 15px;
}
.about-images img {
height: 320px;
width: 320px;
}
}
</style>
<script>
// Get the button
Expand Down