Skip to content

Commit

Permalink
reduce h2 to h3 for section headers (page header is h2)
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongundel committed Dec 3, 2024
1 parent f9695ac commit d5280ed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const props = defineProps<{
<template>
<div class="section">
<div class="header">
<h2>{{ props.titleText }}</h2>
<h3>{{ props.titleText }}</h3>
<div>
<Button
:label="$gettext(`Add ${props.titleText}`)"
Expand All @@ -34,7 +34,7 @@ const props = defineProps<{
align-items: center;
border-bottom: 1px solid var(--p-menubar-border-color);
}
.section .header h2 {
.section .header h3 {
flex: 1;
}
.content {
Expand Down

0 comments on commit d5280ed

Please sign in to comment.