Skip to content

Commit

Permalink
fix: outline accessiblity
Browse files Browse the repository at this point in the history
  • Loading branch information
tblivet committed Dec 18, 2024
1 parent b5dae19 commit 1f4465f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _dev/src/scss/components/_logs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ $e-logs: ".logs";
flex-direction: column;
flex-grow: 1;
min-height: var(--#{$ua-prefix}logs-height);
overflow: hidden;
background-color: var(--#{$ua-prefix}logs-background-color);
border-radius: var(--#{$ua-prefix}border-radius);

Expand All @@ -53,6 +52,7 @@ $e-logs: ".logs";
&__scroll-inner {
height: 100%;
overflow-y: scroll;
border-radius: var(--#{$ua-prefix}border-radius);
}

&__list {
Expand Down
2 changes: 1 addition & 1 deletion views/templates/components/logs-templates.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<p data-slot-template="title" class="logs__summary-title h3"></p>
<span data-slot-template="count" class="logs__summary-total badge badge-danger"></span>
</div>
<div class="logs__summary-scroll"></div>
<div class="logs__summary-scroll" tabindex="0"></div>
</div>
</template>

Expand Down

0 comments on commit 1f4465f

Please sign in to comment.