Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions news/posts/2025-09-01-GSoC-Report-DoodleBUGS/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ nocite: |

## DoodleBUGS Project Structure

```{.bash}
```{.bash .code-overflow-scroll filename="Directory Structure"}
DoodleBUGS/ # Vite + Vue 3 app (UI editor)
├── README.md # project documentation
├── public/ # static assets served by Vite
Expand Down Expand Up @@ -197,7 +197,7 @@ Key differences:

Frontend (Vite):

```bash
```{.bash}
# from repo root
cd DoodleBUGS
npm install
Expand All @@ -206,7 +206,7 @@ npm run dev

Backend (Julia):

```bash
```{.bash .code-overflow-scroll}
# from repo root
julia --project=DoodleBUGS/runtime DoodleBUGS/runtime/server.jl
# server listens on http://localhost:8081
Expand Down
10 changes: 9 additions & 1 deletion theming/rules/_responsive.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
code {
white-space: normal;
word-wrap: break-word;
overflow-wrap: break-word;
}

@media (max-width: 1200px) {
.core-packages-grid {
grid-template-columns: repeat(2, 1fr);
Expand Down Expand Up @@ -60,6 +66,7 @@
display: block;
margin-top: 0.3rem;
text-align: center;

.button {
display: inline-block;
width: auto;
Expand Down Expand Up @@ -136,6 +143,7 @@
justify-content: center;
}
}

.partner-logo {
flex-basis: auto;
width: 100%;
Expand All @@ -148,4 +156,4 @@
align-items: center;
}
}
}
}
Loading