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

Email section Positioned #457

Merged
merged 1 commit into from
Jul 2, 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
15 changes: 8 additions & 7 deletions src/components/newsletter/style.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
.newsLetterBanner {
width: 80%; /* Reduced width to avoid overlap */
max-width: 600px; /* Ensures it doesn't get too wide on large screens */
height: 80px; /* Relative to viewport height for better responsiveness */
width: 80%;
max-width: 600px;
height: 80px;
position: absolute;
bottom: 35%; /* Adjust as needed based on design */
left: 8%; /* Adjusted to avoid overlapping with neighboring divs */
bottom: 25%;
left: 8%;
z-index: 10;
display: flex; /* Use flexbox for alignment */
align-items: center; /* Center items vertically */
display: flex;
align-items: center;
box-sizing: border-box;
margin: 20px;
}


.newsLetterBanner input {
width: 100%;
height: 100%;
Expand Down