Skip to content

Commit

Permalink
fix: Color for resource operation server and project name
Browse files Browse the repository at this point in the history
  • Loading branch information
chz committed May 8, 2024
1 parent ba40f93 commit 8920762
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="pb-4">
<div class="flex flex-col flex-wrap gap-2">
@foreach ($servers->sortBy('id') as $server)
<h5>Server: <span class="font-bold text-white">{{ $server->name }}</span></h5>
<h5>Server: <span class="font-bold text-dark dark:text-white">{{ $server->name }}</span></h5>
@foreach ($server->destinations() as $destination)
<x-modal-confirmation action="cloneTo({{ data_get($destination, 'id') }})">
<x:slot name="content">
Expand All @@ -33,7 +33,7 @@ class="font-bold dark:text-warning">{{ $resource->environment->project->name }}
</div>
<div class="flex flex-col flex-wrap gap-2">
@forelse ($projects as $project)
<h5>Project: <span class="font-bold text-white">{{ $project->name }}</span></h5>
<h5>Project: <span class="font-bold text-dark dark:text-white">{{ $project->name }}</span></h5>

@foreach ($project->environments as $environment)
<x-modal-confirmation action="moveTo({{ data_get($environment, 'id') }})">
Expand Down

0 comments on commit 8920762

Please sign in to comment.