Skip to content

Commit b5f5009

Browse files
Add debugging and fix style
1 parent 2ce2215 commit b5f5009

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

kernel/src/services/FirmwareService.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ export class FirmwareService {
180180
.map(byte => String.fromCharCode(byte))
181181
.join('');
182182

183+
console.log('Downloaded SFE FIRMWARE. Firmware string size:', this.firmwareString.length);
183184
return this.firmwareString;
184185
}
185186

kernel/src/styles.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export const dialogStyles = `
132132
border-radius: 8px;
133133
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
134134
width: 90%;
135-
max-width: 500px;
135+
max-width: 750px;
136136
padding: 2rem;
137137
position: relative;
138138
transform: translateY(20px);
@@ -146,9 +146,10 @@ export const dialogStyles = `
146146
}
147147
148148
.firmware-section {
149-
width: 100%;
149+
width: 50%;
150150
margin-top: 0.75rem;
151151
animation: fadeIn 0.5s ease-out forwards;
152+
margin-left: 20px;
152153
}
153154
154155
.firmware-divider {

0 commit comments

Comments
 (0)