This commit is contained in:
Chris Hunt
2024-02-17 20:49:17 +00:00
parent 8fa870e8eb
commit a0726a43ad
2 changed files with 12 additions and 3 deletions

View File

@@ -181,7 +181,16 @@ body {
margin: 0;
}
#sortable.categories {
align-content: flex-start;
align-items: flex-start;
.category {
margin:10px;
background-color: #00000038;
border-radius: 10px;
> .title {
padding: 20px 20px 0;
color: white;
}
}
}
}
#config-buttons {

View File

@@ -3,8 +3,8 @@
@foreach($categories as $category)
<?php $apps = $category->children; ?>
<div>
{{ $category->title }}
<div class="category">
<div class="title">{{ $category->title }}</div>
@foreach($apps as $app)
@include('item')
@endforeach