datasciencedojo commited on
Commit
f941f95
·
1 Parent(s): 125944e

added CSS to heading

Browse files
Files changed (1) hide show
  1. app.py +21 -1
app.py CHANGED
@@ -50,7 +50,27 @@ height: 13em;
50
  max-width: none !important;
51
  }
52
 
53
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  """
55
 
56
  with gr.Blocks(title="Analyze Text | Data Science Dojo", css = css) as demo:
 
50
  max-width: none !important;
51
  }
52
 
53
+ .output-markdown h1, .output-markdown h2{
54
+ z-index: 14;
55
+ align-self: flex-start;
56
+ min-width: 0px;
57
+ order: 5;
58
+ min-height: 0px;
59
+ height: max-content;
60
+ flex-grow: 0;
61
+ flex-shrink: 0;
62
+ width: calc(100% - 0px);
63
+ margin: 5px 0px;
64
+ white-space: pre-wrap;
65
+ overflow: visible;
66
+ word-break: break-word;
67
+ font-size: 18px !important;
68
+ font-weight: 500 !important;
69
+ color: rgb(9, 23, 71) !important;
70
+ line-height: 1 !important;
71
+ border-radius: 0px !important;
72
+ opacity: 1 !important;
73
+ }
74
  """
75
 
76
  with gr.Blocks(title="Analyze Text | Data Science Dojo", css = css) as demo: