1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-06-11 20:20:50 +02:00

helpmodal: improve content

This commit is contained in:
Kushagra Gour
2018-09-29 19:12:13 +05:30
parent b703aaf0cc
commit f41fdebade
2 changed files with 92 additions and 84 deletions

View File

@ -12,8 +12,8 @@ export function HelpModal(props) {
<div> <div>
<p> <p>
Made with <span style="margin-right: 8px;">💖</span> &{' '} Made with <span style="margin-right: 8px;">💖</span>&{' '}
<span style="margin-right: 8px;">🙌</span> by{' '} <span style="margin-right: 8px;"> 🙌</span> by{' '}
<a <a
href="https://twitter.com/chinchang457" href="https://twitter.com/chinchang457"
target="_blank" target="_blank"
@ -37,7 +37,7 @@ export function HelpModal(props) {
@webmakerApp @webmakerApp
</a>. </a>.
</p> </p>
<p> <p class="show-when-extension">
Like this extension? Please{' '} Like this extension? Please{' '}
<a <a
href="https://chrome.google.com/webstore/detail/web-maker/lkfkkhfhhdkiemehlpkgjeojomhpccnh/reviews" href="https://chrome.google.com/webstore/detail/web-maker/lkfkkhfhhdkiemehlpkgjeojomhpccnh/reviews"
@ -95,7 +95,10 @@ export function HelpModal(props) {
</p> </p>
<p> <p>
<h3>Awesome libraries used</h3> <details>
<summary>
<h3 class="d-i">See awesome libraries used</h3>
</summary>
<ul> <ul>
<li> <li>
<a <a
@ -111,6 +114,7 @@ export function HelpModal(props) {
rel="noopener noreferrer" rel="noopener noreferrer"
href="https://github.com/chinchang/screenlog.js" href="https://github.com/chinchang/screenlog.js"
> >
{' '}
Screenlog.js Screenlog.js
</a>{' '} </a>{' '}
- By me :) - By me :)
@ -176,6 +180,7 @@ export function HelpModal(props) {
- whhat! - whhat!
</li> </li>
</ul> </ul>
</details>
</p> </p>
<p> <p>

View File

@ -70,6 +70,9 @@ button {
display: none !important; display: none !important;
} }
.d-i {
display: inline;
}
.flex { .flex {
display: flex; display: flex;
} }