refacto: Making Tailwind offline + making it Tauri compatible for compilation

This commit is contained in:
gauvainboiche
2026-08-01 21:48:49 +02:00
parent 512857d0cf
commit 9c16fd6305
13 changed files with 561 additions and 13 deletions
+36
View File
@@ -57,4 +57,40 @@ input[type="number"] {
#pkChart {
min-height: 280px;
}
}
/* Annulation des flèches sur les numéros */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}
/* Scrollbar timeline */
#timelineGrid::-webkit-scrollbar {
height: 8px;
}
#timelineGrid::-webkit-scrollbar-track {
background: rgba(15, 23, 42, 0.6);
border-radius: 9999px;
}
#timelineGrid::-webkit-scrollbar-thumb {
background: rgba(51, 65, 85, 0.8);
border-radius: 9999px;
}
/* Transitions modale */
#modalCalc {
transition: opacity 0.2s ease-in-out;
}
#modalCalc.hidden {
opacity: 0;
pointer-events: none;
}
#modalCalc:not(.hidden) {
opacity: 1;
pointer-events: auto;
}