From 2893591ea1e4e724008d8ab6dbd370017d20d621 Mon Sep 17 00:00:00 2001 From: Robert Goldmann <deadlocker@gmx.de> Date: Tue, 23 Aug 2022 22:17:07 +0200 Subject: [PATCH] #716 - increase font size on large screens --- BudgetMasterServer/src/main/resources/static/css/style.css | 2 +- .../main/resources/templates/transactions/transactions.ftl | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/BudgetMasterServer/src/main/resources/static/css/style.css b/BudgetMasterServer/src/main/resources/static/css/style.css index ba0839a4b..10e635825 100644 --- a/BudgetMasterServer/src/main/resources/static/css/style.css +++ b/BudgetMasterServer/src/main/resources/static/css/style.css @@ -629,7 +629,7 @@ input[type="radio"]:checked + span::after, [type="radio"].with-gap:checked + spa } .budget { - font-size: 2.5vmin; + font-size: 3vmin; } .fixed-action-btn { diff --git a/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl b/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl index 907c6f12d..3ec4d0444 100644 --- a/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl +++ b/BudgetMasterServer/src/main/resources/templates/transactions/transactions.ftl @@ -25,19 +25,19 @@ <div class="row"> <div class="col s4"> <div class="icon-block"> - <h1 class="center text-green budget-headline-icon"><i class="material-icons icon-budget">file_download</i></h1> + <h1 class="center text-green budget-headline-icon no-margin-bottom"><i class="material-icons icon-budget">file_download</i></h1> <h5 class="center budget">${currencyService.getCurrencyString(budget.getIncomeSum())}</h5> </div> </div> <div class="col s4"> <div class="icon-block"> - <h1 class="center ${redTextColor} budget-headline-icon"><i class="material-icons icon-budget">file_upload</i></h1> + <h1 class="center ${redTextColor} budget-headline-icon no-margin-bottom"><i class="material-icons icon-budget">file_upload</i></h1> <h5 class="center budget">${currencyService.getCurrencyString(budget.getExpenditureSum())}</h5> </div> </div> <div class="col s4"> <div class="icon-block"> - <h1 class="center text-blue budget-headline-icon"><i class="fas fa-piggy-bank icon-budget"></i></h1> + <h1 class="center text-blue budget-headline-icon no-margin-bottom"><i class="fas fa-piggy-bank icon-budget"></i></h1> <h5 class="center budget">${currencyService.getCurrencyString(budget.getRest())}</h5> </div> </div> -- GitLab