-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update TOU + PP, update public form footer (#682)
* feat: add TOU and PP to public form footer * feat: update privacy policy * feat: update TOU * style: update styling for privacy and tou pages * style: update padding * style: add browser autoprefixes * fix: remove display:table causes display width on ie11 to be unbounded
- Loading branch information
Showing
7 changed files
with
897 additions
and
721 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
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
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,59 @@ | ||
/* | ||
* Prefixed by https://autoprefixer.github.io | ||
* PostCSS: v7.0.29, | ||
* Autoprefixer: v9.7.6 | ||
* Browsers: last 4 version | ||
*/ | ||
|
||
#privacy-tou ol { | ||
list-style: none; | ||
padding-top: 8px; | ||
padding-bottom: 8px; | ||
} | ||
|
||
@media screen and (max-width: 425px) { | ||
#privacy-tou ol { | ||
-webkit-padding-start: 28px; | ||
padding-inline-start: 28px; | ||
} | ||
} | ||
|
||
#privacy-tou li { | ||
display: -webkit-box; | ||
display: -ms-flexbox; | ||
display: flex; | ||
-webkit-box-orient: vertical; | ||
-webkit-box-direction: normal; | ||
-ms-flex-direction: column; | ||
flex-direction: column; | ||
padding-top: 8px; | ||
padding-bottom: 8px; | ||
} | ||
|
||
#privacy-tou .tou-point-bold { | ||
font-size: 20px; | ||
color: #323232; | ||
font-weight: 700; | ||
word-break: break-word; | ||
} | ||
|
||
#privacy-tou .tou-point-header::before { | ||
font-size: 20px; | ||
} | ||
|
||
#privacy-tou ol > li::before { | ||
content: attr(seq) ' '; | ||
position: relative; | ||
left: -44px; | ||
width: 0; | ||
height: 0; | ||
display: inline-block; | ||
} | ||
|
||
#privacy-tou ol > li > ol > li::before { | ||
left: -50px; | ||
} | ||
|
||
#privacy-tou ol > li > ol > li > ol > li::before { | ||
left: -60px; | ||
} |
Oops, something went wrong.