diff --git a/resources/views/admin/home.blade.php b/resources/views/admin/home.blade.php index 33ae9b1..9da044a 100644 --- a/resources/views/admin/home.blade.php +++ b/resources/views/admin/home.blade.php @@ -66,12 +66,28 @@ .card1-body .card1-body__item { margin: 7px; padding-left: 10px; + font-size: 14px; } .card1-body .card1-body__item .card1-body__item--label { - color: #333; + color: #666; + + position: relative; + } + .card1-body .card1-body__item .card1-body__item--label::before { + content: ""; + width: 4px; + height: 100%; + background: #73cdb9; + border-radius: 4px; + + position: absolute; + left: -4px; + top: 0; } .card1-body .card1-body__item .card1-body__item--value { font-weight: 600; + color: #333; + font-size: 15px; }