Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion esbuild.build.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node
import {build} from 'esbuild';
import importGlobPlugin from 'esbuild-plugin-import-glob';
import packageJson from './package.json' assert {type: 'json'};
import packageJson from './package.json' with {type: 'json'};
import sh from 'shelljs';
import minimist from 'minimist';

Expand Down
2 changes: 1 addition & 1 deletion src/CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tuner.timbits.dev
yatatuner.app
5 changes: 3 additions & 2 deletions src/app/components/app-body.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const AppBodyComponentStyles = css`
font-size: clamp(1rem, 3cqi, 2rem);
z-index: 2;
position: absolute;
top: 0;
margin: 0.5em;
padding: 0.5em;

Expand Down Expand Up @@ -103,9 +104,9 @@ export class AppBodyComponent extends LitElement {
const backgroundColorRGB = ColorUtility.hexToRgb(ConfigService.getColor('background'));

this.style.setProperty('--primary-color', `${primaryColorRGB.r}, ${primaryColorRGB.g}, ${primaryColorRGB.b}`);
this.style.setProperty('--text-color',`${textColorRGB.r}, ${textColorRGB.g}, ${textColorRGB.b}`);
this.style.setProperty('--text-color', `${textColorRGB.r}, ${textColorRGB.g}, ${textColorRGB.b}`);
this.style.setProperty('--highlight-color', `${highlightColorRGB.r}, ${highlightColorRGB.g}, ${highlightColorRGB.b}`);
this.style.setProperty('--background-color',`${backgroundColorRGB.r}, ${backgroundColorRGB.g}, ${backgroundColorRGB.b}`);
this.style.setProperty('--background-color', `${backgroundColorRGB.r}, ${backgroundColorRGB.g}, ${backgroundColorRGB.b}`);
}

/**
Expand Down
3 changes: 2 additions & 1 deletion src/app/components/settings/settings.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ export const SettingsComponentStyles = css`
.bottom-button {
font-size: clamp(1rem, 3cqi, 2rem);
margin: 0;
margin-bottom: 8rem;
}

.bottom-button-container {
Expand Down Expand Up @@ -187,7 +188,7 @@ export class SettingsComponent extends LitElement {

this.openedDetails = event.detailsElement;
}

private handleClose(event: Event) {
this.dispatchEvent(new CustomEvent('settings-close', event));
}
Expand Down
Loading