Skip to content

Commit 9ce18b3

Browse files
Try to fix the popup background and its content opened state.
Update static.yml and docusaurus.config.ts files.
1 parent e236361 commit 9ce18b3

File tree

4 files changed

+41
-96
lines changed

4 files changed

+41
-96
lines changed

.github/workflows/preview.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# .github/workflows/preview.yml
2+
name: Deploy PR previews
3+
4+
on:
5+
pull_request:
6+
types:
7+
- opened
8+
- reopened
9+
- synchronize
10+
- closed
11+
12+
concurrency: preview-${{ github.ref }}
13+
14+
jobs:
15+
deploy-preview:
16+
runs-on: ubuntu-20.04
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v3
20+
21+
- name: Install and Build
22+
if: github.event.action != 'closed' # You might want to skip the build if the PR has been closed
23+
run: |
24+
npm install
25+
npm run build
26+
27+
- name: Deploy preview
28+
uses: rossjrw/pr-preview-action@v1
29+
with:
30+
source-dir: ./build/

docusaurus.config.ts

+7-93
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ const config: Config = {
1212
url: "https://quantstack.net/",
1313
// Set the /<baseUrl>/ pathname under which your site is served
1414
// For GitHub pages deployment, it is often '/<projectName>/'
15-
baseUrl: "/",
15+
baseUrl: "/quantstack.github.io/",
1616

1717
// GitHub pages deployment config.
1818
// If you aren't using GitHub pages, you don't need these.
19-
organizationName: "/QuantStack/", // Usually your GitHub org/user name.
19+
organizationName: "/HaudinFlorence/", // Usually your GitHub org/user name.
2020
projectName: "quantstack.github.io", // Usually your repo name.
2121

2222
onBrokenLinks: "throw",
@@ -64,7 +64,7 @@ const config: Config = {
6464
title: "",
6565
logo: {
6666
alt: "QuantStack Logo",
67-
src: "img/quantstack/logo-website.svg"
67+
src: "img/quantstack/logo-website.svg",
6868
},
6969

7070
items: [
@@ -131,96 +131,10 @@ const config: Config = {
131131
],
132132
},
133133

134-
footer: {
135-
links: [
136-
{
137-
title: " ",
138-
items: [
139-
{
140-
label: " ",
141-
className: "astronaut-footer",
142-
href: "/home",
143-
},
144-
],
145-
},
146-
147-
{
148-
title: "Follow QuantStack on",
149-
items: [
150-
{
151-
label: "GitHub",
152-
className: "github-icon",
153-
href: "https://github.com/QuantStack",
154-
},
155-
{
156-
label: "LinkedIn",
157-
className: "linkedin-icon",
158-
href: "https://www.linkedin.com/company/quantstack/mycompany/",
159-
},
160-
{
161-
label: "X",
162-
className: "x-icon",
163-
href: "https://twitter.com/QuantStack",
164-
},
165-
],
166-
},
167-
{
168-
title: "Menu ",
169-
items: [
170-
{
171-
label: "Home",
172-
href: "/home/",
173-
},
174-
{
175-
label: "Projects",
176-
href: "/projects/",
177-
},
178-
{
179-
label: "Services",
180-
href: "/services/",
181-
},
182-
{
183-
label: "About",
184-
href: "/about/",
185-
},
186-
{
187-
label: "Careers",
188-
href: "/careers/",
189-
},
190-
{
191-
label: "Blog",
192-
href: "/blog/",
193-
},
194-
],
195-
},
196-
197-
198-
{
199-
title: "QuantStack office ",
200-
items: [
201-
{
202-
html: `
203-
204-
<div class="div .address">
205-
16, avenue Curti <br/>
206-
94100 Saint-Maur-des-Fossés <br/>
207-
France
208-
</div>
209-
210-
`,
211-
},
212-
],
213-
},
214-
],
215-
216-
copyright: copyright,
217-
},
218-
219-
colorMode: {
220-
defaultMode: 'light',
221-
disableSwitch: true,
222-
respectPrefersColorScheme: false,
223-
134+
colorMode: {
135+
defaultMode: "light",
136+
disableSwitch: true,
137+
respectPrefersColorScheme: false,
224138
},
225139

226140
prism: {

src/components/about/styles.module.css

+1
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ div .join_the_team_text {
210210
.large_portrait_card {
211211
width: 1000px;
212212
padding: var(--ifm-spacing-xl) var(--ifm-spacing-2xl);
213+
background-color: orange;
213214
}
214215

215216
.subteam_container {

.github/workflows/static.yml static.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ name: Deploy static content to Pages
44
on:
55
# Runs on pushes targeting the default branch
66
push:
7-
branches: ["master"]
7+
branches: "open_the_popup_portrait_on_a_specific_page"
88
pull_request:
99
branches:
10-
- '*'
10+
- "open_the_popup_portrait_on_a_specific_page"
1111

1212
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
1313

@@ -39,7 +39,7 @@ jobs:
3939

4040
deploy:
4141
needs: build
42-
if: github.ref == 'refs/heads/master'
42+
if: github.ref == 'refs/heads/open_the_popup_portrait_on_a_specific_page'
4343
environment:
4444
name: github-pages
4545
url: ${{ steps.deployment.outputs.page_url }}

0 commit comments

Comments
 (0)