Skip to content

Commit 8dd4cfa

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 84ca6b0 + 76037e3 commit 8dd4cfa

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22
name: Deploy MkDocs site to GitHub Pages
33

44
# Trigger the workflow when pushing to the "main" branch
5-
on:
5+
on:
66
push:
77
branches:
88
- main
9+
pull_request:
10+
branches:
11+
- main
12+
workflow_dispatch:
913

1014
# Allow the workflow to write to the repository (needed to publish to gh-pages)
1115
permissions:

docs/home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
> Modern Portfolio Optimization in Python
44
55
---
6-
Test6
6+
Test7
77
Welcome to **PortPy**! Effortlessly optimize, analyze, and visualize your investment portfolios with a modern, user-friendly Python library.
88

99
<div align="center">

mkdocs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ theme:
1919
favicon: images/PortPy_logo.png # Icon shown in browser tabs
2020
palette: # Define light and dark color schemes
2121
- scheme: default
22-
primary: deep purple
23-
accent: lime
22+
primary: "#4051b5"
23+
accent: "#009688"
2424
toggle:
2525
icon: material/weather-sunny
2626
name: Switch to dark mode
2727
- scheme: slate
28-
primary: blue grey
28+
primary: teal
2929
accent: lime
3030
toggle:
3131
icon: material/weather-sunny
@@ -39,7 +39,7 @@ theme:
3939
- navigation.instant # Instantly loads new pages without full reload
4040
#- navigation.tabs # Displays top-level navigation as horizontal tabs
4141
- navigation.top # Keeps the top navigation bar visible while scrolling (sticky header)
42-
- toc.integrate # Integrates table of contents into the side navigation
42+
#- toc.integrate # Integrates table of contents into the side navigation
4343
- search.suggest # Suggests search terms as you type
4444
- search.highlight # Highlights search terms in the results
4545

0 commit comments

Comments
 (0)