demetz commited on
Commit
6c44711
·
verified ·
1 Parent(s): ef0cac9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -87,7 +87,7 @@ chat_css="""
87
  """
88
 
89
  with gr.Blocks(css=chat_css) as chatbot:
90
- with gr.Row(scale=1):
91
  with gr.Column(scale=1):
92
  gr.Image(
93
  value="frog.png",
@@ -95,6 +95,11 @@ with gr.Blocks(css=chat_css) as chatbot:
95
  show_share_button=False,
96
  show_download_button=False
97
  )
 
 
 
 
 
98
  with gr.Column(scale=1):
99
  character_name = gr.Textbox(label = "Character Name", placeholder="Type your name here…", info ="optional")
100
  character_class = gr.CheckboxGroup(['Barbarian', 'Bard', 'Cleric', 'Druid', 'Fighter', 'Monk', 'Paladin', 'Ranger', 'Rogue', 'Sorcerer', 'Warlock', 'Wizard'], label="Character Class", info="Choose one or more")
 
87
  """
88
 
89
  with gr.Blocks(css=chat_css) as chatbot:
90
+ with gr.Row():
91
  with gr.Column(scale=1):
92
  gr.Image(
93
  value="frog.png",
 
95
  show_share_button=False,
96
  show_download_button=False
97
  )
98
+ with gr.Column(scale=3):
99
+ gr.Markdown("""# Character Maker""")
100
+
101
+ with gr.Row():
102
+
103
  with gr.Column(scale=1):
104
  character_name = gr.Textbox(label = "Character Name", placeholder="Type your name here…", info ="optional")
105
  character_class = gr.CheckboxGroup(['Barbarian', 'Bard', 'Cleric', 'Druid', 'Fighter', 'Monk', 'Paladin', 'Ranger', 'Rogue', 'Sorcerer', 'Warlock', 'Wizard'], label="Character Class", info="Choose one or more")