mirror of
https://github.com/carloscuesta/gitmoji.git
synced 2025-12-08 20:14:12 +00:00
📱 Fix pre overflow in mobile (#1611)
This commit is contained in:
parent
d63a72f05f
commit
abd3391fe2
@ -87,7 +87,9 @@ exports[`Pages About should render the page 1`] = `
|
||||
</a>
|
||||
. A gitmoji interactive client for using emojis on commit messages.
|
||||
</p>
|
||||
<pre>
|
||||
<pre
|
||||
className="overflow-x-adjust"
|
||||
>
|
||||
<code>
|
||||
$ npm i -g gitmoji-cli
|
||||
</code>
|
||||
@ -4154,7 +4156,9 @@ exports[`Pages Specification should render the page 1`] = `
|
||||
: A brief explanation of the change.
|
||||
</li>
|
||||
</ul>
|
||||
<pre>
|
||||
<pre
|
||||
className="overflow-x-adjust"
|
||||
>
|
||||
<code>
|
||||
<intention> [scope?][:?] <message>
|
||||
</code>
|
||||
|
||||
@ -51,7 +51,7 @@ const About = () => (
|
||||
A gitmoji interactive client for using emojis on commit messages.
|
||||
</p>
|
||||
|
||||
<pre>
|
||||
<pre className="overflow-x-adjust">
|
||||
<code>$ npm i -g gitmoji-cli</code>
|
||||
</pre>
|
||||
</section>
|
||||
|
||||
@ -36,7 +36,7 @@ const Specification = () => (
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<pre>
|
||||
<pre className="overflow-x-adjust">
|
||||
<code><intention> [scope?][:?] <message></code>
|
||||
</pre>
|
||||
</section>
|
||||
|
||||
@ -114,6 +114,10 @@ pre {
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
.overflow-x-adjust {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.wrap {
|
||||
max-width: 1100px;
|
||||
margin: 0 auto;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user