Skip to content

Commit

Permalink
Increase contrast and weight of registers and line numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
1whatleytay committed Mar 18, 2024
1 parent 3f5cc20 commit 8d769e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/EditorBody.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@resize="updateBounds"
>
<div
class="w-16 pr-2 mr-2 text-xs text-slate-600 shrink-0 z-10 absolute left-0 bg-neutral-900 pt-2"
class="w-20 pr-4 mr-2 text-xs text-slate-400 font-medium shrink-0 z-10 absolute left-0 bg-neutral-900 pt-2"
@click.self
@wheel.stop
:style="{ top: `${state.lineOffset}px` }"
Expand All @@ -31,7 +31,7 @@
</div>
</div>

<div class="w-16 pr-2 mr-2 shrink-0"></div>
<div class="w-20 pr-2 mr-2 shrink-0"></div>

<div
ref="code"
Expand Down
4 changes: 2 additions & 2 deletions src/components/console/RegisterItem.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<div
class="w-28 py-1 px-0.5 h-12 text-white"
class="w-28 py-1 px-0.5 h-12 text-white font-medium"
:class="!props.editable ? 'opacity-80' : ''"
>
<div class="text-xs pl-2 group" :class="props.classes">
<div class="text-xs pl-2 group font-bold" :class="props.classes">
{{ props.name }}
</div>

Expand Down

0 comments on commit 8d769e4

Please sign in to comment.