32 lines
675 B
PHP
32 lines
675 B
PHP
<style>
|
|
.info-box {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.info-box .info-box-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
line-height: 2;
|
|
padding: 0 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.info-box .info-box-number {
|
|
margin-top: 0.25rem;
|
|
}
|
|
</style>
|
|
|
|
<div {!! $attributes !!}>
|
|
@if($icon)
|
|
<span class="info-box-icon bg-{{ $style }}">
|
|
<i class="{{ $icon }}"></i>
|
|
</span>
|
|
@endif
|
|
|
|
<div class="info-box-content">
|
|
<span class="info-box-text">{{ $title }}</span>
|
|
<span class="info-box-number">{!! $content !!}</span>
|
|
</div>
|
|
</div>
|