Skip to content

Commit bed31d3

Browse files
committed
Update deps
1 parent 008e714 commit bed31d3

File tree

3 files changed

+30
-5
lines changed

3 files changed

+30
-5
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

playground/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
5+
<meta name="viewport" content="width=device-width, maximum-scale=1.0, initial-scale=1.0, viewport-fit=cover" />
66
<title>Divvun Runtime Playground</title>
77
</head>
88

playground/src/App.css

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,10 +181,13 @@
181181
padding: 12px 16px;
182182
border-bottom: 1px solid #3e3e42;
183183
background-color: #252526;
184+
gap: 12px;
185+
flex-wrap: wrap;
184186
}
185187

186188
.header-left {
187189
flex: 1;
190+
min-width: 0;
188191
display: flex;
189192
align-items: center;
190193
gap: 12px;
@@ -250,6 +253,7 @@
250253
.header-right {
251254
display: flex;
252255
gap: 8px;
256+
flex-shrink: 0;
253257
}
254258

255259
.app-main {
@@ -1005,3 +1009,24 @@ button:disabled {
10051009
margin-right: 6px;
10061010
cursor: pointer;
10071011
}
1012+
1013+
/* Mobile responsive styles */
1014+
@media (max-width: 600px) {
1015+
.app-header {
1016+
flex-direction: column;
1017+
align-items: stretch;
1018+
}
1019+
1020+
.header-left {
1021+
flex-direction: column;
1022+
align-items: stretch;
1023+
}
1024+
1025+
.bundle-name {
1026+
text-align: center;
1027+
}
1028+
1029+
.header-right {
1030+
justify-content: center;
1031+
}
1032+
}

0 commit comments

Comments
 (0)