Skip to content

Commit

Permalink
Fixed padding for module-name and prompt to reduce empty space, instr…
Browse files Browse the repository at this point in the history
…uctor_mode is false on init
  • Loading branch information
facundoy committed Feb 23, 2025
1 parent 8072c5b commit 263040a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/haz3lweb/Settings.re
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module Model = {
},
async_evaluation: false,
context_inspector: false,
instructor_mode: true,
instructor_mode: false,
benchmark: false,
explainThis: {
show: true,
Expand Down
6 changes: 4 additions & 2 deletions src/haz3lweb/www/style/cell.css
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
/* EDITING */

.cell-module-name {
padding: 1em;
padding-left: 1em;
display: flex;
align-items: center;
gap: 0.5em;
Expand Down Expand Up @@ -195,7 +195,9 @@
}

.cell-prompt {
padding: 1em;
padding-left: 1em;
padding-top: 0.25em;
padding-bottom: 0.5em;
}

.prompt-edit .prompt-text {
Expand Down

0 comments on commit 263040a

Please sign in to comment.