-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed code audit modal on mobile (#4287)
- Loading branch information
Showing
4 changed files
with
35 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -169,7 +169,6 @@ const hide = () => { | |
} | ||
&__buttons { | ||
z-index: 10; | ||
display: flex; | ||
align-items: center; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,16 +31,16 @@ | |
placeholder="Email" | ||
required | ||
name="Email" | ||
class="w-full mt-3" | ||
class="w-full mt-3 form__input" | ||
/> | ||
<VaTextarea | ||
v-model="description" | ||
placeholder="Project link, tech stack, and details" | ||
required | ||
name="Field 3" | ||
class="w-full mt-3" | ||
class="w-full mt-3 form__input" | ||
:resize="false" | ||
:max-rows="4" | ||
:max-rows="3" | ||
/> | ||
<Recaptcha | ||
ref="recaptchaRef" | ||
|
@@ -56,7 +56,7 @@ | |
<div v-if="submitError" class="form__notice form__notice--error mt-6"> | ||
Oops! Something went wrong while submitting the form. Please try again or contact us directly at <a href="mailto:[email protected]" target="_new">[email protected]</a>. We're here to help and ensure your inquiry is handled promptly. | ||
</div> | ||
<div v-else class="form__notice mt-6"> | ||
<div v-else class="form__notice mt-6 xs:mt-3"> | ||
Click "Submit!" to consent to processing your data by Epicmax Georgia LLC for marketing purposes, including sending emails. For details see our <a href="https://www.iubenda.com/privacy-policy/90200659" target="_blank">Privacy Policy</a> | ||
</div> | ||
</div> | ||
|
@@ -137,18 +137,24 @@ const submitForm = async () => { | |
max-width: 100%; | ||
} | ||
&__text { | ||
&__text, | ||
&__input { | ||
font-size: 0.9rem; | ||
} | ||
&__title { | ||
margin-top: 20px; | ||
margin-bottom: 34px; | ||
@include xs(margin-top, 0); | ||
@include xs(margin-bottom, 12px); | ||
} | ||
&__notice { | ||
font-size: 13px; | ||
color: var(--va-secondary); | ||
font-size: 13px; | ||
@include xs(font-size, 10px); | ||
} | ||
&__notice--error { | ||
|
@@ -160,5 +166,7 @@ h3 { | |
@include subtitle-font(); | ||
font-size: 2.5rem !important; | ||
@include xs(font-size, 1.75rem !important); | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters