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

Solved issue #4768 #4775

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
56 changes: 56 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3471,6 +3471,62 @@
margin-top: 0;
margin-bottom: 10px;
}

/* Responsive design for screens smaller than 768px */
@media screen and (max-width: 768px) {
.popup-content-nl {
flex-direction: column; /* Stack elements vertically on mobile */
max-width: 90%; /* Make the popup smaller */
height: auto; /* Allow height to adjust automatically */
padding: 10px; /* Add some padding */
}

.popup-left-nl {
display: none; /* Hide the image on mobile */
}

.popup-right-nl {
width: 100%;
padding: 20px;
text-align: center;
}

.popup-right-nl h1 {
font-size: 20px;
}

.popup-right-nl .h2-nl {
font-size: 16px; /* Adjust the subheading font size */
}

.popup-right-nl p {
font-size: 14px; /* Adjust text size for mobile */
}

.close1-btn-nl {
width: 20px;
cursor: pointer;
margin: 18px 10px;
position: absolute;
top: -4px;
right: 12px;
font-size: 18px;
font-weight: 800;
z-index: 1010; /* Ensure the close button is on top */
}

.no-thanks-nl {
font-size: 14px; /* Adjust 'No thanks' font size */
}

.signup-btn1-nl {
font-size: 14px;
}

.terms-nl {
font-size: 10px; /* Adjust terms text size */
}
}
</style>
<div id="popup-nl" class="popup-nl">
<div class="popup-content-nl">
Expand Down
Loading