Skip to content

Commit a45bb9d

Browse files
UI fixes (#127)
1 parent 5a11cac commit a45bb9d

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

news/posts/2025-09-01-GSoC-Report-DoodleBUGS/index.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ nocite: |
3131

3232
## DoodleBUGS Project Structure
3333

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

198198
Frontend (Vite):
199199

200-
```bash
200+
```{.bash}
201201
# from repo root
202202
cd DoodleBUGS
203203
npm install
@@ -206,7 +206,7 @@ npm run dev
206206

207207
Backend (Julia):
208208

209-
```bash
209+
```{.bash .code-overflow-scroll}
210210
# from repo root
211211
julia --project=DoodleBUGS/runtime DoodleBUGS/runtime/server.jl
212212
# server listens on http://localhost:8081

theming/rules/_responsive.scss

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
code {
2+
white-space: normal;
3+
word-wrap: break-word;
4+
overflow-wrap: break-word;
5+
}
6+
17
@media (max-width: 1200px) {
28
.core-packages-grid {
39
grid-template-columns: repeat(2, 1fr);
@@ -60,6 +66,7 @@
6066
display: block;
6167
margin-top: 0.3rem;
6268
text-align: center;
69+
6370
.button {
6471
display: inline-block;
6572
width: auto;
@@ -136,6 +143,7 @@
136143
justify-content: center;
137144
}
138145
}
146+
139147
.partner-logo {
140148
flex-basis: auto;
141149
width: 100%;
@@ -148,4 +156,4 @@
148156
align-items: center;
149157
}
150158
}
151-
}
159+
}

0 commit comments

Comments
 (0)