Merge branch 'textarea_line_fix' of github.com:gradio-app/gradio into textarea_line_fix

This commit is contained in:
Abubakar Abid 2022-03-17 11:37:07 -07:00
commit 6f296b6d91
3 changed files with 3 additions and 6 deletions

View File

@ -12,7 +12,7 @@
import "./themes/huggingface.css";
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();
@ -60,7 +60,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 one or more lines are too long

View File

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