Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ export function StatusIndicator({
position={{ align: "center", side: "top", sideOffset: 5 }}
>
<div
className="border bg-gray-1 border-grayA-3 h-full rounded-lg w-8 transition-shadow hover:ring-1 hover:ring-gray-7 duration-200 ease-out cursor-pointer overflow-hidden"
className="border bg-gray-1 border-grayA-3 h-full rounded-lg w-6.5 transition-shadow hover:ring-1 hover:ring-gray-7 duration-200 ease-out cursor-pointer overflow-hidden"
style={{
boxShadow: glowBoxShadow,
}}
>
<div className="h-6 border-b border-grayA-3 flex justify-end items-start pt-1.5 pr-1.5">
<div className="h-6 border-b border-grayA-3 flex justify-center items-center">
<StatusDot healthStatus={healthStatus} />
</div>
<div className="h-5 bg-grayA-2 pl-1 pt-[3px]">{icon}</div>
<div className="h-5 bg-grayA-2 flex items-center w-full justify-center">{icon}</div>
</div>
</InfoTooltip>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export function DeploymentDomainsCard({
href={d.url}
target="_blank"
rel="noopener noreferrer"
className="transition-all hover:underline decoration-dashed underline-offset-2 max-w-[250px] truncate font-medium text-xs"
className="transition-all hover:underline decoration-dashed underline-offset-2 w-[250px] max-w-[250px] truncate font-medium text-xs"
>
{d.hostname}
</a>
Expand Down
Loading