1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-06-07 18:14:57 +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,87 +95,92 @@ export function HelpModal(props) {
</p> </p>
<p> <p>
<h3>Awesome libraries used</h3> <details>
<ul> <summary>
<li> <h3 class="d-i">See awesome libraries used</h3>
<a </summary>
target="_blank" <ul>
rel="noopener noreferrer" <li>
href="https://kushagragour.in/lab/hint/" <a
> target="_blank"
Hint.css rel="noopener noreferrer"
</a>{' '} href="https://kushagragour.in/lab/hint/"
& >
<a Hint.css
target="_blank" </a>{' '}
rel="noopener noreferrer" &
href="https://github.com/chinchang/screenlog.js" <a
> target="_blank"
Screenlog.js rel="noopener noreferrer"
</a>{' '} href="https://github.com/chinchang/screenlog.js"
- By me :) >
</li> {' '}
<li> Screenlog.js
<a </a>{' '}
target="_blank" - By me :)
rel="noopener noreferrer" </li>
href="https://nathancahill.github.io/Split.js/" <li>
> <a
Split.js target="_blank"
</a>{' '} rel="noopener noreferrer"
- Nathan Cahill href="https://nathancahill.github.io/Split.js/"
</li> >
<li> Split.js
<a </a>{' '}
target="_blank" - Nathan Cahill
rel="noopener noreferrer" </li>
href="https://codemirror.net/" <li>
> <a
Codemirror target="_blank"
</a>{' '} rel="noopener noreferrer"
- Marijn Haverbeke href="https://codemirror.net/"
</li> >
<li> Codemirror
<a </a>{' '}
target="_blank" - Marijn Haverbeke
rel="noopener noreferrer" </li>
href="https://emmet.io/" <li>
> <a
Emmet target="_blank"
</a>{' '} rel="noopener noreferrer"
- Sergey Chikuyonok href="https://emmet.io/"
</li> >
<li> Emmet
<a </a>{' '}
target="_blank" - Sergey Chikuyonok
rel="noopener noreferrer" </li>
href="http://esprima.org/" <li>
> <a
Esprima target="_blank"
</a>{' '} rel="noopener noreferrer"
- Ariya Hidayat href="http://esprima.org/"
</li> >
<li> Esprima
<a </a>{' '}
target="_blank" - Ariya Hidayat
rel="noopener noreferrer" </li>
href="https://github.com/enjalot/Inlet" <li>
> <a
Inlet target="_blank"
</a>{' '} rel="noopener noreferrer"
- Ian Johnson href="https://github.com/enjalot/Inlet"
</li> >
<li> Inlet
<a </a>{' '}
target="_blank" - Ian Johnson
rel="noopener noreferrer" </li>
href="https://webmakerapp.com/" <li>
> <a
Web Maker! target="_blank"
</a>{' '} rel="noopener noreferrer"
- whhat! href="https://webmakerapp.com/"
</li> >
</ul> Web Maker!
</a>{' '}
- whhat!
</li>
</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;
} }