1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

offline optimization, new signal chart, ui optimization

This commit is contained in:
Marek Farkaš
2025-02-23 15:27:46 +01:00
parent fcfc0691fa
commit 3c91c8d06c
24 changed files with 373 additions and 287 deletions

View File

@@ -22,6 +22,15 @@ h1#tuner-name {
transition: 0.3s ease color;
}
#tuner-name i {
transition: transform 0.3s ease;
}
#tuner-name i.rotated {
transform: rotate(180deg);
}
h1#tuner-name:hover {
color: var(--color-main-bright);
}
@@ -75,9 +84,13 @@ label {
}
.canvas-container {
width: 100%;
height: 175px;
width: calc(100% - 20px);
height: 140px;
overflow: hidden;
border-radius: 15px;
margin-left: 10px;
margin-right: 10px;
position: relative;
}
#data-ant {