PluginProbe
Extendify / 1.9.1
Extendify v1.9.1
3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 0.7.0 All 126 releases
extendify / src / Draft / app.css

app.css in Extendify 1.9.1, at src/Draft/app.css

53 lines 983 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @tailwind base;
2 @tailwind components;
3 @tailwind utilities;
4
5 .extendify-draft .completion:after {
6 content: "";
7 display: block;
8 position: sticky;
9 bottom: 0;
10 left: 0;
11 width: 100%;
12 height: 1em;
13 background: linear-gradient(
14 to bottom,
15 rgba(240, 240, 240, 0),
16 rgb(240, 240, 240)
17 );
18 pointer-events: none;
19 }
20
21 .extendify-draft .completion h1 {
22 font-size: 1em;
23 font-weight: 600;
24 margin-top: 0.67em;
25 margin-bottom: 0.67em;
26 line-height: 1em;
27 }
28
29 .extendify-draft .completion h1:first-child {
30 margin-top: 0;
31 }
32
33 .extendify-draft .completion h2 {
34 font-size: 1em;
35 font-weight: 600;
36 margin-top: 0.67em;
37 margin-bottom: 0.67em;
38 line-height: 1em;
39 }
40
41 .extendify-draft .completion h3 {
42 font-size: 1em;
43 font-weight: 600;
44 margin-top: 0.67em;
45 margin-bottom: 0.67em;
46 line-height: 1em;
47 text-transform: none;
48 }
49
50 .extendify-draft .completion p:last-child {
51 margin-bottom: 0;
52 }
53