Update Fonts y Template
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 9m48s

This commit is contained in:
Leandro Hernan Rojas 2025-05-16 10:14:31 -03:00
parent 2e2a1c4b37
commit 8aa7d0a65f
2 changed files with 7 additions and 11 deletions

View File

@ -10,9 +10,10 @@
<title>Presupuesto N° @Model.Quotenumber</title> <title>Presupuesto N° @Model.Quotenumber</title>
<style> <style>
body { body {
font-family: DejaVu Sans, Arial, Helvetica, sans-serif; font-family: "DejaVu Sans", "Liberation Sans", sans-serif;
font-size: 12px; font-size: 12px;
color: #333; color: #333;
margin: 40px;
} }
h1, h2 { h1, h2 {
@ -25,18 +26,14 @@
margin-top: 15px; margin-top: 15px;
} }
table, th, td { th, td {
border: 1px solid #ccc; border: 1px solid #ccc;
padding: 6px;
} }
th { th {
background-color: #004B8D; background-color: #004B8D;
color: white; color: white;
padding: 6px;
}
td {
padding: 6px;
} }
.section { .section {

View File

@ -21,10 +21,9 @@ RUN apt-get update && \
libappindicator3-1 libasound2 \ libappindicator3-1 libasound2 \
libatk-bridge2.0-0 libatk1.0-0 libcups2 libdbus-1-3 \ libatk-bridge2.0-0 libatk1.0-0 libcups2 libdbus-1-3 \
libgdk-pixbuf2.0-0 libnspr4 libnss3 libx11-xcb1 \ libgdk-pixbuf2.0-0 libnspr4 libnss3 libx11-xcb1 \
libxcomposite1 libxdamage1 libxrandr2 xdg-utils chromium \ libxcomposite1 libxdamage1 libxrandr2 xdg-utils \
debconf fontconfig && \ chromium \
echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections && \ fontconfig && \
apt-get install -y --no-install-recommends ttf-mscorefonts-installer && \
fc-cache -f && \ fc-cache -f && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*