From 49a39e8cf0a38134b0cd9907e5a56be289e6043b Mon Sep 17 00:00:00 2001 From: Millicool Date: Wed, 21 Jan 2026 10:21:12 +0100 Subject: [PATCH] Add padding to selection text --- ui.R | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/ui.R b/ui.R index 38db5a4..40090dc 100644 --- a/ui.R +++ b/ui.R @@ -182,8 +182,11 @@ ui <- function() { # farbe rgba ist die exakte Farbe der Trennlinien und Card-Umrandungen aus der App ) ), - uiOutput("txt_map_selection_bezirk"), - uiOutput("txt_map_selection_stadtteil"), + div( + style ="padding: 0 15px; margin-top: 10px;", + uiOutput("txt_map_selection_bezirk"), + uiOutput("txt_map_selection_stadtteil"), + ), plotOutput("grph_top3"), ), col_widths = breakpoints( @@ -259,7 +262,7 @@ ui <- function() { choices = c(2024, 2023), selected = 2024, ), - ), + ), card( card_header(uiOutput("vergleichs_titel")), # Dynamischer Titel plotOutput("vergleich_balkendiagramm") @@ -296,5 +299,5 @@ ui <- function() { ), ), ) - ) + ) } \ No newline at end of file