0.1.3: visual fix

This commit is contained in:
Cory Sanin 2025-01-15 21:56:22 -05:00
parent 7d07873536
commit 14f0d494be
5 changed files with 9 additions and 9 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "archery",
"version": "0.1.2",
"version": "0.1.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "archery",
"version": "0.1.2",
"version": "0.1.3",
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.3",

View File

@ -1,6 +1,6 @@
{
"name": "archery",
"version": "0.1.2",
"version": "0.1.3",
"description": "Build Arch packages through a web interface",
"keywords": [
"docker",

View File

@ -121,7 +121,7 @@ input[type="submit"] {
.sidebar {
background: var(--primary);
width: 16em;
width: 13rem;
height: 100%;
position: fixed;
top: 0;
@ -184,7 +184,7 @@ input[type="submit"] {
}
.content {
margin-left: 16em;
margin-left: 13rem;
padding: 1em;
&.no-padding {
@ -210,13 +210,13 @@ input[type="submit"] {
}
.logs {
width: fit-content;
min-width: 100%;
font-family: 'Courier New', monospace;
font-size: 0.9em;
border-left: #d96a14 .2em solid;
background: #2a2a2a;
margin-top: 1em;
overflow-x: auto;
overflow-wrap: anywhere;
p {
padding: .1em .5em;

View File

@ -26,7 +26,7 @@
</div>
<% } %>
<p><a href="/build/<%= build.id %>/logs">Full logs</a></p>
<pre><div class="logs" id="logs"><% (log || []).forEach(line => { %><p><%= line %></p><% }) %></div></pre>
<pre class="overflow-x"><div class="logs" id="logs"><% (log || []).forEach(line => { %><p><%= line %></p><% }) %></div></pre>
<% if (!ended) { %>
<label id="followCheckmarkContainer" title="Follow logs">

View File

@ -14,7 +14,7 @@
<link rel="canonical" href="<%= page.canonical%>"/>
<% } %>
<link rel="shortcut icon" href="/assets/svg/favicon.svg">
<link rel="stylesheet" href="/assets/css/styles.css?v2">
<link rel="stylesheet" href="/assets/css/styles.css?v3">
<script nonce="<%= cspNonce %>">
document.addEventListener("DOMContentLoaded", function() {
document.body.classList.remove('preload');