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;") −