This commit is contained in:
Long Pham 2025-07-12 15:24:41 +08:00 committed by GitHub
commit 8282bb0e24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 14 additions and 2 deletions

View File

@ -2,6 +2,7 @@
<html lang="en" style="overflow: hidden">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><%= config.name %> - Riju</title>
<link
rel="stylesheet"
@ -61,8 +62,8 @@
</span>
</button>
</div>
<div style="height: 100%">
<div id="editor" style="height: 100%; margin: 12px; margin-left: 0"></div>
<div id="editor-wrapper">
<div id="editor" style="height: 100%; margin-top: 30px; margin-left: 0"></div>
</div>
</div>
<div class="column" id="terminal" style="background: black; padding: 0">

View File

@ -2,6 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Riju</title>
<link rel="stylesheet" href="/css/index.css" />
<% if (analyticsTag) { %>

View File

@ -5,3 +5,13 @@
#header .button {
border-radius: 0;
}
@media (max-width: 767px) {
#editor-wrapper {
max-height: 50vh !important;
}
}
#editor-wrapper {
height: 100%;
}