@brillout/docpress 0.6.3 → 0.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/code/inline.css +2 -8
- package/package.json +1 -1
package/css/code/inline.css
CHANGED
|
@@ -1,27 +1,21 @@
|
|
|
1
1
|
code {
|
|
2
|
-
padding:
|
|
2
|
+
padding: 3px 6px;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
6
|
* Line breaks in `<code>`:
|
|
7
7
|
* - Avoid them on desktop
|
|
8
8
|
* - Allow them on mobile
|
|
9
|
-
* -
|
|
9
|
+
* - Allow them for `<code long>`
|
|
10
10
|
*/
|
|
11
|
-
code {
|
|
12
|
-
display: inline-block;
|
|
13
|
-
}
|
|
14
11
|
@media screen and (max-width: 500px) {
|
|
15
12
|
code {
|
|
16
13
|
word-break: break-word;
|
|
17
|
-
display: inline;
|
|
18
14
|
}
|
|
19
15
|
}
|
|
20
16
|
.inline-code-break code {
|
|
21
|
-
display: inline;
|
|
22
17
|
word-break: break-word;
|
|
23
18
|
}
|
|
24
19
|
code.long {
|
|
25
20
|
word-break: break-word;
|
|
26
|
-
display: inline;
|
|
27
21
|
}
|