Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fzumstein committed Feb 9, 2025
1 parent 8e18c98 commit 0e6f375
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 26 deletions.
26 changes: 0 additions & 26 deletions app/static/css/core.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,29 +26,3 @@
.z-index-1000 {
z-index: 1000;
}

/* Styles for the resizable divider */
.resizer {
height: 5px;
background: #ccc;
cursor: row-resize;
position: relative; /* Add relative position for pseudo element */
}

.resizer::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 30px; /* Adjust width for a short line */
height: 1px;
background: #000;
}

#output {
overflow: auto;
font-family: monospace;
white-space: nowrap;
font-size: 0.75rem;
}
29 changes: 29 additions & 0 deletions app/static/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/* Styles for the resizable divider */
.resizer {
height: 5px;
background: #ccc;
cursor: row-resize;
position: relative; /* Add relative position for pseudo element */
}

.resizer::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 30px; /* Adjust width for a short line */
height: 1px;
background: #000;
}

#output {
overflow: auto;
font-family: monospace;
white-space: nowrap;
font-size: 0.75rem;
}

.nav-link.active {
border-top: 4px solid green !important;
}

0 comments on commit 0e6f375

Please sign in to comment.