app.css in Extendify 1.9.1, at src/Draft/app.css
| 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 |