Initial commit

This commit is contained in:
s4luorth
2026-02-07 13:08:18 +01:00
commit 68f683625d
6 changed files with 1024 additions and 0 deletions

28
assets/css/rr-charts.css Normal file
View File

@@ -0,0 +1,28 @@
.rr-chart-wrap {
margin: 0 auto;
padding: 16px;
background: #F6F9FC;
border-radius: 8px;
box-sizing: border-box;
}
.rr-chart-wrap canvas {
width: 100% !important;
}
/* Wenn ein Elementor-Container zwei Shortcodes nebeneinander hat (50/50 Columns) */
.elementor-column[data-col="50"] .rr-chart-wrap,
.elementor-col-50 .rr-chart-wrap {
width: 100% !important;
max-width: 100% !important;
}
/* Responsive: unter 768px */
@media (max-width: 768px) {
.rr-chart-wrap {
width: 100% !important;
max-width: 100% !important;
padding: 8px;
border-radius: 4px;
}
}