fix(ui): fix mobile view

This commit is contained in:
Barrett Ruth 2025-11-09 17:25:39 -05:00
parent 0caab7c0c4
commit 644e6d071c

View file

@ -31,11 +31,16 @@ const promptText = topic ? `barrett@ruth:~$ ${topic}` : "barrett@ruth:~$";
}
@media (max-width: 768px) {
header {
flex-direction: column;
align-items: flex-start;
flex-direction: row;
flex-wrap: wrap;
gap: 10px;
}
.terminal-container {
flex: 1 1 auto;
min-width: 0;
}
#theme-toggle {
align-self: flex-end;
flex: 0 0 auto;
}
}
</style>