Falko Schindler 2 년 전
부모
커밋
1e0588f5e5
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      main.py
  2. 2 2
      website/reference.py

+ 1 - 1
main.py

@@ -175,7 +175,7 @@ ui.run()
                 ui.markdown('Enjoy!').classes('text-lg')
                 ui.markdown('Enjoy!').classes('text-lg')
                 with browser_window(classes='w-full h-52'):
                 with browser_window(classes='w-full h-52'):
                     ui.label('Hello NiceGUI!')
                     ui.label('Hello NiceGUI!')
-        with ui.expansion('... or use Docker to run your main.py').classes('w-full gap-2 arrow-links'):
+        with ui.expansion('...or use Docker to run your main.py').classes('w-full gap-2 bold-links arrow-links'):
             with ui.row().classes('mt-8 w-full justify-center items-center gap-8'):
             with ui.row().classes('mt-8 w-full justify-center items-center gap-8'):
                 ui.markdown('''
                 ui.markdown('''
 With our [multi-arch Docker image](https://hub.docker.com/repository/docker/zauberzeug/nicegui) 
 With our [multi-arch Docker image](https://hub.docker.com/repository/docker/zauberzeug/nicegui) 

+ 2 - 2
website/reference.py

@@ -965,7 +965,7 @@ You can set the following environment variables to configure NiceGUI:
 
 
     h3('Deployment')
     h3('Deployment')
 
 
-    with ui.column().classes('w-full mb-8 arrow-links'):
+    with ui.column().classes('w-full mb-8 bold-links arrow-links'):
         add_markdown_with_headline('''#### Server Hosting
         add_markdown_with_headline('''#### Server Hosting
 
 
 To deploy your NiceGUI app on a server, you will need to execute your `main.py` (or whichever file contains your `ui.run(...)`) on your cloud infrastructure.
 To deploy your NiceGUI app on a server, you will need to execute your `main.py` (or whichever file contains your `ui.run(...)`) on your cloud infrastructure.
@@ -1000,7 +1000,7 @@ You can provide SSL certificates directly using [FastAPI](https://fastapi.tiango
 In production we also like using reverse proxies like [Traefik](https://doc.traefik.io/traefik/) or [NGINX](https://www.nginx.com/) to handle these details for us.
 In production we also like using reverse proxies like [Traefik](https://doc.traefik.io/traefik/) or [NGINX](https://www.nginx.com/) to handle these details for us.
 See our [docker-compose.yml](https://github.com/zauberzeug/nicegui/blob/main/docker-compose.yml) as an example.
 See our [docker-compose.yml](https://github.com/zauberzeug/nicegui/blob/main/docker-compose.yml) as an example.
 
 
-You may also have look at [our example for using a custom FastAPI app](https://github.com/zauberzeug/nicegui/tree/main/examples/fastapi).
+You may also have a look at [our example for using a custom FastAPI app](https://github.com/zauberzeug/nicegui/tree/main/examples/fastapi).
 This will allow you to do very flexible deployments as described in the [FastAPI documentation](https://fastapi.tiangolo.com/deployment/).
 This will allow you to do very flexible deployments as described in the [FastAPI documentation](https://fastapi.tiangolo.com/deployment/).
 ''')
 ''')