From 3344863573dc8a1c5d654e64485b879db06eaa41 Mon Sep 17 00:00:00 2001 From: andreswebs Date: Sat, 20 Feb 2021 13:36:37 -0300 Subject: [PATCH] add classes to download link --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index aa4ccb5..bb99aa4 100644 --- a/index.html +++ b/index.html @@ -2198,6 +2198,7 @@ const link = document.createElement("a"); const url = URL.createObjectURL(blob); link.setAttribute("href", url); + link.className = "btn btn-primary btn-sm"; link.textContent = `Download ${fileName}` if (link.download !== undefined) { link.setAttribute("download", fileName);