fix: (forgot to say that the layout in enhanced in last commit) + fix du prettier
All checks were successful
Format / formatting (push) Successful in 6s
Build / build (push) Successful in 38s
CI / build (push) Successful in 11s
Format / formatting (pull_request) Successful in 6s

This commit is contained in:
2025-04-23 11:07:32 +02:00
parent 28b0e69da1
commit fcc20d1f42
5 changed files with 122 additions and 116 deletions

View File

@ -117,19 +117,18 @@ onMounted(() => {
gap: 12px;
padding: 30px;
position: relative;
height: auto; /* autorise la hauteur à s'ajuster selon le contenu */
max-height: none; /* enlève la limite de hauteur */
height: auto; /* autorise la hauteur à s'ajuster selon le contenu */
max-height: none; /* enlève la limite de hauteur */
box-sizing: border-box;
overflow: visible; /* autorise le débordement visible */
overflow: visible; /* autorise le débordement visible */
}
@media (max-width: 768px) {
.canvas {
grid-template-columns: repeat(1, 1fr);
}
.canvas {
grid-template-columns: repeat(1, 1fr);
}
}
.Probleme {
grid-column: 1 / 3;
grid-row: 1 / 5;
@ -200,5 +199,4 @@ onMounted(() => {
.Revenus {
background-color: #c8e6c9;
}
</style>