diff options
chore: linter
| -rw-r--r-- | src/routes/IndexPage.svelte | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/routes/IndexPage.svelte b/src/routes/IndexPage.svelte index b79ae01..7e1592c 100644 --- a/src/routes/IndexPage.svelte +++ b/src/routes/IndexPage.svelte @@ -145,14 +145,14 @@ {#if line.kind === 'text'} {#if (line.renderrestriction ?? 'everywhere') === 'everywhere' || line.renderrestriction === 'noscript' || (line.renderrestriction === 'js-only' && isScripted)} {#if line.renderrestriction === 'noscript'} - <noscript class="inline-block max-w-[100%] {line.classes.join(' ')}" + <noscript class="inline-block max-w-full {line.classes.join(' ')}" >{#each line.value as v}{@render ttyTextMiddleRenderer( v, line, )}{/each}</noscript > {:else} - <span class="inline-block max-w-[100%] {line.classes.join(' ')}" + <span class="inline-block max-w-full {line.classes.join(' ')}" >{#each line.value as v}{@render ttyTextMiddleRenderer( v, line, @@ -184,7 +184,7 @@ > <div class="top flex items-center justify-center flex-col"> <div class="inner text-[#999999]"> - <p class="leading-4 mt-8 -mb-8 max-w-[36rem]"> + <p class="leading-4 mt-8 -mb-8 max-w-xl"> <span class="bdsdxe-load" >BdsDxe: loading Boot0002 "UEFI Misc Device" from PciRoot (0x0)/Pci(0x2,0x4)/Pci(0x0,0x0)</span @@ -226,7 +226,7 @@ <div class="outer-border border-2 border-[#a8a8a8] border-solid h-full px-1 py-2 flex flex-col items-stretch" > - <div class="entry bg-[#a8a8a8] text-[#000] text-left"> + <div class="entry bg-[#a8a8a8] text-black text-left"> *Alpine Linux {versions.alpine.number}, with {versions.kernel .humanReadable} </div> @@ -237,8 +237,8 @@ <p class="footer text-[#a2a2a2] my-4 text-left pl-2"> <span class="block pl-6"> Use the ↑ and ↓ keys to select which entry is highlighted.<br /> - Press enter to boot the selected OS, `e' to edit the commands before - booting or `c' for a command-line.<br /> + Press enter to boot the selected OS, `e' to edit the commands before booting + or `c' for a command-line.<br /> </span> The highlighted entry will be executed automatically in <span class="grub-2s inline-block">2</span><span |