Merge pull request #832 from gradio-app/textarea_line_fix

restore typography
This commit is contained in:
Abubakar Abid 2022-03-17 12:09:43 -07:00 committed by GitHub
commit ab6c5f3dbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6475 additions and 6 deletions

View File

@ -13,6 +13,7 @@
import "./themes/grass.css";
import "./themes/peach.css";
import "./themes/seafoam.css";
import "./themes/typography.min.css";
import { _ } from "svelte-i18n";
import { setupi18n } from "./i18n";
setupi18n();
@ -61,7 +62,7 @@
<h1 class="title text-center p-4 text-4xl">{title}</h1>
{/if}
{#if description}
<p class="description pb-4">{@html description}</p>
<p class="description prose pb-4">{@html description}</p>
{/if}
<Interface
{input_components}

File diff suppressed because it is too large Load Diff

View File

@ -3,11 +3,7 @@ module.exports = {
content: ["./src/**/*.svelte"],
mode: "jit",
darkMode: "class", // or 'media' or 'class'
theme: {
extend: {}
},
variants: {
extend: {}
},
plugins: []
}
};