portal, platform, and server fixes

This commit is contained in:
Timur Gordon
2025-06-30 17:01:40 +02:00
parent 1c96fa4087
commit a5b46bffb1
59 changed files with 9158 additions and 1057 deletions

View File

@@ -28,7 +28,7 @@ pub fn overview_tab(props: &OverviewTabProps) -> Html {
// Key Statistics Cards
<div class="row g-4 mb-4">
<div class="col-md-3">
<div class="card border-warning shadow-soft card-hover">
<div class="card shadow-soft card-hover" style="border: none;">
<div class="card-body p-4">
<div class="d-flex align-items-center justify-content-between">
<div>
@@ -47,7 +47,7 @@ pub fn overview_tab(props: &OverviewTabProps) -> Html {
</div>
<div class="col-md-3">
<div class="card border-info shadow-soft card-hover">
<div class="card shadow-soft card-hover" style="border: none;">
<div class="card-body p-4">
<div class="d-flex align-items-center justify-content-between">
<div>
@@ -66,7 +66,7 @@ pub fn overview_tab(props: &OverviewTabProps) -> Html {
</div>
<div class="col-md-3">
<div class="card border-success shadow-soft card-hover">
<div class="card shadow-soft card-hover" style="border: none;">
<div class="card-body p-4">
<div class="d-flex align-items-center justify-content-between">
<div>
@@ -85,7 +85,7 @@ pub fn overview_tab(props: &OverviewTabProps) -> Html {
</div>
<div class="col-md-3">
<div class="card border-primary shadow-soft card-hover">
<div class="card shadow-soft card-hover" style="border: none;">
<div class="card-body p-4">
<div class="d-flex align-items-center justify-content-between">
<div>
@@ -107,8 +107,8 @@ pub fn overview_tab(props: &OverviewTabProps) -> Html {
// Recent Transactions
<div class="row g-4">
<div class="col-12">
<div class="card shadow-soft border-0">
<div class="card-header bg-white border-bottom-0 py-3">
<div class="card shadow-soft" style="border: none;">
<div class="card-header bg-white py-3" style="border-bottom: none;">
<h5 class="mb-0 fw-bold">{"Recent Transactions"}</h5>
<small class="text-muted">{"Latest payments made and received"}</small>
</div>