From f52e91520b20f2075697f96aae44a8f795258918 Mon Sep 17 00:00:00 2001 From: leokontente Date: Tue, 3 Jun 2025 16:09:39 +0200 Subject: [PATCH] fix: add/del column --- views/index.jade | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/views/index.jade b/views/index.jade index e247fb5..9145a63 100644 --- a/views/index.jade +++ b/views/index.jade @@ -55,5 +55,7 @@ block body table#board-table.board-table tr td#icon-col(width='1%') - image#add-col.col-icon(width='20', height='20', src='images/icons/iconic/raster/black/plus_alt_32x32.png' alt='Ajouter une colonne') - image#delete-col.col-icon(width='20', height='20', src='images/icons/iconic/raster/black/minus_alt_32x32.png' alt='Supprimer une colonne') \ No newline at end of file + div#add-col.col-icon(title="Ajouter une colonne", style="width:20px; height:20px; display:flex; justify-content:center; align-items:center; border:1px solid #000; cursor:pointer;") + span(style="font-weight:bold; font-size:16px;") + + div#delete-col.col-icon(title="Supprimer une colonne", style="width:20px; height:20px; display:flex; justify-content:center; align-items:center; border:1px solid #000; cursor:pointer; margin-top:4px;") + span(style="font-weight:bold; font-size:16px;") −