]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix dashboard widget card borders hidden by bkgd color (#4155)
authorshamoon <4887959+shamoon@users.noreply.github.com>
Sun, 10 Sep 2023 16:20:02 +0000 (09:20 -0700)
committerGitHub <noreply@github.com>
Sun, 10 Sep 2023 16:20:02 +0000 (16:20 +0000)
src-ui/src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html

index 4eaee47618ab3d4e7aec00edb33b089e5a7cb9b7..2fb15b090e766eafe312342e126a0e8e7e6ef5e6 100644 (file)
@@ -1,4 +1,4 @@
-<div class="card mb-3 shadow-sm">
+<div class="card mb-3 shadow-sm bg-light">
   <div class="card-header">
     <div class="d-flex justify-content-between align-items-center">
       <h5 class="card-title mb-0">{{title}}</h5>
@@ -10,7 +10,7 @@
     </div>
 
   </div>
-  <div class="card-body text-dark bg-light">
+  <div class="card-body text-dark">
     <ng-content select ="[content]"></ng-content>
   </div>
 </div>