fix colours bugs

This commit is contained in:
WhyKorp
2024-09-22 14:11:51 +02:00
committed by GitHub
parent 1603a80ddd
commit bbefb107f3
+4 -1
View File
@@ -51,6 +51,9 @@
margin-top: 0; margin-top: 0;
} }
.add_task_title {
color: black;
};
</style> </style>
</head> </head>
@@ -68,7 +71,7 @@
<!-- Menu latéral pour ajouter une tâche --> <!-- Menu latéral pour ajouter une tâche -->
<div id="task-menu"> <div id="task-menu">
<span id="close-menu">&times;</span> <span id="close-menu">&times;</span>
<h2>Ajouter une tâche</h2> <h2 class="add_task_title">Ajouter une tâche</h2>
<form id="add-task-form" action="add_task.php" method="POST"> <form id="add-task-form" action="add_task.php" method="POST">
<label for="task_name">Nom de la tâche :</label><br> <label for="task_name">Nom de la tâche :</label><br>
<input type="text" id="task_name" name="task_name" required><br><br> <input type="text" id="task_name" name="task_name" required><br><br>