@@ -47,6 +47,7 @@ def __init__(self, lang, settings, update_llms, llm_configured):
4747
4848    self .message_form  =  ft .TextField (
4949      hint_text = self .l .chatwindow .hint ,
50+       hint_style = ft .TextStyle (weight = ft .FontWeight .NORMAL ),
5051      autofocus = True ,
5152      shift_enter = True ,
5253      min_lines = 1 ,
@@ -247,7 +248,7 @@ def render_settings(title, key, val):
247248      ft .Text (spans = [
248249        ft .TextSpan ("Visit us at: " ),
249250        ft .TextSpan (
250-             "subconscious .chat" ,
251+             "Subconscious .chat" ,
251252            ft .TextStyle (decoration = ft .TextDecoration .UNDERLINE ),
252253            url = "https://subconscious.chat/" ,
253254            on_enter = self .highlight_link ,
@@ -392,7 +393,7 @@ def new_llm_config(self, event, slug=None, provider=None, model=None, api_key=No
392393                border = ft .InputBorder .NONE , border_color = ft .colors .TRANSPARENT ,
393394                bgcolor = ft .colors .TRANSPARENT , border_radius = 5 , multiline = False , 
394395                clip_behavior = ft .ClipBehavior .HARD_EDGE , 
395-                 content_padding = ft .padding .only (10 , - 14 , 2 , 2 ),
396+                 content_padding = ft .padding .only (10 , 0 , 2 , 2 ),
396397                dense = True , hint_text = "Enter the LLM model name" ,
397398                hint_style = ft .TextStyle (color = ft .colors .SECONDARY , weight = ft .FontWeight .NORMAL ),
398399              ),
@@ -419,7 +420,7 @@ def new_llm_config(self, event, slug=None, provider=None, model=None, api_key=No
419420                border = ft .InputBorder .NONE , border_color = ft .colors .TRANSPARENT ,
420421                bgcolor = ft .colors .TRANSPARENT , border_radius = 5 , multiline = False , 
421422                clip_behavior = ft .ClipBehavior .HARD_EDGE , 
422-                 content_padding = ft .padding .only (10 , - 14 , 2 , 2 ),
423+                 content_padding = ft .padding .only (10 , 0 , 2 , 2 ),
423424                dense = True , password = True , hint_text = "Enter the LLM API key if required" ,
424425                hint_style = ft .TextStyle (color = ft .colors .SECONDARY , weight = ft .FontWeight .NORMAL )
425426              ),
@@ -464,7 +465,7 @@ def new_llm_config(self, event, slug=None, provider=None, model=None, api_key=No
464465                        border = ft .InputBorder .NONE , border_color = ft .colors .TRANSPARENT ,
465466                        bgcolor = ft .colors .TRANSPARENT , border_radius = 5 , multiline = False , 
466467                        clip_behavior = ft .ClipBehavior .HARD_EDGE , 
467-                         content_padding = ft .padding .only (10 , - 14 , 2 , 2 ),
468+                         content_padding = ft .padding .only (10 , 0 , 2 , 2 ),
468469                        dense = True , hint_text = "Alias for this model configuration" ,
469470                        hint_style = ft .TextStyle (color = ft .colors .SECONDARY , weight = ft .FontWeight .NORMAL ),
470471                      ),
@@ -544,7 +545,7 @@ def chatwindow(self):
544545                content = ft .Column ([
545546                  ft .Container (
546547                    border_radius = ft .BorderRadius (5 , 5 , 5 , 5 ),
547-                     padding = ft .padding .only (4 , - 15 , 4 , 0 ),
548+                     padding = ft .padding .only (4 , - 5 , 4 , 0 ),
548549                    margin = ft .margin .only (0 , 0 , 0 , 0 ),
549550                    bgcolor = ft .colors .SECONDARY_CONTAINER ,
550551                    content = ft .Column (
0 commit comments