forked from bigcommerce/cornerstone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(storefront): STRF-10214 Add manual captcha field to contact-us f…
…orm (bigcommerce#2290)
- Loading branch information
1 parent
a3cb0c1
commit 9e4c7e1
Showing
6 changed files
with
46 additions
and
3 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
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 |
---|---|---|
|
@@ -182,3 +182,6 @@ | |
|
||
// Categories | ||
@import "stencil/category/component"; | ||
|
||
// Contact-Us Form | ||
@import "stencil/contact/component"; |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// ============================================================================= | ||
// CONTACT PAGE (CSS) | ||
// ============================================================================= | ||
|
||
|
||
// Manual captcha form styling | ||
// ----------------------------------------------------------------------------- | ||
|
||
.manual-captcha-input-container { | ||
align-items: center; | ||
display: flex; | ||
|
||
.question { | ||
font-size: 1.25rem; | ||
margin-right: 1rem; | ||
} | ||
|
||
.form-input { | ||
flex: 1; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// ============================================================================= | ||
// CONTACT PAGE | ||
// ============================================================================= | ||
|
||
|
||
// Component | ||
@import "./captcha"; |
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