switch font-mediumfont-semibold for titles

This should resolve to `font-weight: 600` but currently does not. :(
This commit is contained in:
Henry Wilkinson 2023-02-03 03:35:07 -05:00
parent a2a8d283ff
commit 58971d6b32
3 changed files with 6 additions and 6 deletions

View File

@ -95,7 +95,7 @@ export class CrawlTemplatesDetail extends LiteElement {
<h2>
${this.crawlConfig?.name
? html`<span
class="inline-block align-middle text-xl leading-10 mr-1"
class="inline-block align-middle text-xl font-semibold leading-10 mr-1"
>${this.crawlConfig.name}</span
> `
: ""}
@ -149,7 +149,7 @@ export class CrawlTemplatesDetail extends LiteElement {
${this.renderLastCrawl()} ${this.renderCurrentlyRunningNotice()}
<div class="col-span-1">
<h3 class="text-lg font-medium text-neutral-700 mb-2">
<h3 class="text-lg font-semibold mb-2">
${msg("Crawl Settings")}
</h3>
<main class="border rounded-lg py-3 px-5">
@ -375,7 +375,7 @@ export class CrawlTemplatesDetail extends LiteElement {
if (!this.crawlConfig?.lastCrawlId) return;
return html`
<section class="col-span-1">
<h3 class="text-lg font-medium text-neutral-700 mb-2">
<h3 class="text-lg font-semibold mb-2">
${this.crawlConfig.currCrawlId
? msg("Last Completed Crawl")
: msg("Latest Crawl")}

View File

@ -330,7 +330,7 @@ export class CrawlDetail extends LiteElement {
private renderHeader() {
return html`
<header class="md:flex justify-between">
<h2 class="text-xl font-medium mb-3 md:h-8">
<h2 class="text-xl font-semibold mb-3 md:h-8">
${msg(
html`${this.crawl
? this.crawl.configName
@ -487,7 +487,7 @@ export class CrawlDetail extends LiteElement {
private renderPanel(title: any, content: any) {
return html`
<h3 class="flex-0 text-lg font-medium mb-2">${title}</h3>
<h3 class="flex-0 text-lg font-semibold mb-2">${title}</h3>
<div class="flex-1 rounded-lg border p-5">${content}</div>
`;
}

View File

@ -68,7 +68,7 @@ export class OrgSettings extends LiteElement {
render() {
return html`<header class="mb-5">
<h2 class="text-xl font-medium leading-10">${msg("Org Settings")}</h2>
<h2 class="text-xl font-semibold leading-10">${msg("Org Settings")}</h2>
</header>
<btrix-tab-list activePanel=${this.activePanel} ?hideIndicator=${true}>