Compare commits

...

3 Commits
main ... miau

Author SHA1 Message Date
Jeder 5aef5bbbc0 tosti's indicator-v3 patch 2023-07-19 20:25:05 +02:00
Jeder a344fb98fb change instance ticker a bit 2023-07-19 20:25:00 +02:00
Michcio 198d2cb30a Produce sourcemaps always (debugging on prod is hard) 2023-07-19 20:25:00 +02:00
10 changed files with 3 additions and 17 deletions

View File

@ -33,7 +33,7 @@ const instance = props.instance ?? {
const themeColor = instance.themeColor ?? '#777777';
const bg = {
background: `linear-gradient(90deg, ${themeColor}, ${themeColor}00)`,
background: `${themeColor}7F`,
};
const tooltip = instance.softwareName == null || instance.softwareVersion == null
@ -84,9 +84,7 @@ const tooltip = instance.softwareName == null || instance.softwareVersion == nul
line-height: $height;
font-size: 0.9em;
vertical-align: top;
color: var(--fg);
text-shadow: none;
font-weight: bold;
text-transform: capitalize;
}

View File

@ -154,7 +154,6 @@ function help(ev: MouseEvent) {
left: 32px;
color: var(--indicator);
font-size: 8px;
animation: blink 1s infinite;
@media (max-width: 500px) {
top: 16px;

View File

@ -243,7 +243,6 @@ function focusDown() {
left: 13px;
color: var(--indicator);
font-size: 12px;
animation: blink 1s infinite;
}
}

View File

@ -425,8 +425,3 @@ hr {
transform: scale(0.9);
}
@keyframes blink {
0% { opacity: 1; transform: scale(1); }
30% { opacity: 1; transform: scale(1); }
90% { opacity: 0; transform: scale(0.5); }
}

View File

@ -110,7 +110,6 @@ function more(): void {
left: 20px;
color: var(--navIndicator);
font-size: 8px;
animation: blink 1s infinite;
}
> .text {

View File

@ -143,7 +143,6 @@ function more(ev: MouseEvent) {
left: 20px;
color: var(--navIndicator);
font-size: 8px;
animation: blink 1s infinite;
}
> .text {

View File

@ -135,7 +135,6 @@ function openAccountMenuWrapper(ev: MouseEvent): void {
left: 0;
color: var(--navIndicator);
font-size: 8px;
animation: blink 1s infinite;
}
&:hover {

View File

@ -220,7 +220,6 @@ function openAccountMenuWrapper(ev: MouseEvent): void {
left: 0;
color: var(--navIndicator);
font-size: 8px;
animation: blink 1s infinite;
}
&:hover {

View File

@ -350,7 +350,6 @@ const wallpaper = localStorage.getItem('wallpaper') != null;
left: 0;
color: var(--indicator);
font-size: 16px;
animation: blink 1s infinite;
}
&:first-child {

View File

@ -67,7 +67,7 @@ export default defineConfig(({ command, mode }) => {
outDir: __dirname + '/../../built/_client_dist_',
assetsDir: '.',
emptyOutDir: false,
sourcemap: process.env.NODE_ENV !== 'production',
sourcemap: true,
reportCompressedSize: false,
},
};