Skip to content

Commit

Permalink
fix: convert banner colors to a warning one
Browse files Browse the repository at this point in the history
Signed-off-by: lstocchi <[email protected]>
  • Loading branch information
lstocchi authored and jeffmaury committed Apr 12, 2024
1 parent 3e06496 commit 00b371b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import Fa from 'svelte-fa';
import { faCircleExclamation } from '@fortawesome/free-solid-svg-icons';
import { faTriangleExclamation } from '@fortawesome/free-solid-svg-icons';
import Button from '../button/Button.svelte';
import { filesize } from 'filesize';
import { studioClient } from '/@/utils/client';
Expand Down Expand Up @@ -77,11 +77,11 @@ function executeCommand() {
<div
class="w-full {background === 'light'
? 'bg-charcoal-500'
: 'bg-charcoal-800'} border-t-[3px] border-red-700 p-4 mt-5 shadow-inner"
: 'bg-charcoal-800'} border-t-[3px] border-amber-500 p-4 mt-5 shadow-inner"
aria-label="Container connection info banner">
<div class="flex flex-row space-x-3">
<div class="flex">
<Fa icon="{faCircleExclamation}" class="text-red-600" />
<Fa icon="{faTriangleExclamation}" class="text-amber-400" />
</div>
<div class="flex flex-col grow">
<span class="font-medium text-sm" aria-label="title">{title}</span>
Expand Down

0 comments on commit 00b371b

Please sign in to comment.