1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 21:35:23 +02:00

feat(ui): Rebranding - r8s-374 (#840)

This commit is contained in:
James Player 2025-07-01 12:58:31 +12:00 committed by GitHub
parent cf5990ccba
commit c6ee9a5a52
41 changed files with 821 additions and 342 deletions

View file

@ -7,7 +7,6 @@ import { UpdateNotification } from './UpdateNotifications';
import { BuildInfoModalButton } from './BuildInfoModal';
import '@reach/dialog/styles.css';
import styles from './Footer.module.css';
import Logo from './portainer_logo.svg?c';
export function Footer() {
return isBE ? <BEFooter /> : <CEFooter />;
@ -19,7 +18,6 @@ function CEFooter() {
<UpdateNotification />
<FooterContent>
<Logo width="90px" height="100%" />
<span>Community Edition</span>
<BuildInfoModalButton />
@ -43,7 +41,7 @@ function BEFooter() {
function FooterContent({ children }: PropsWithChildren<unknown>) {
return (
<div className="mx-auto flex items-center justify-center space-x-1 text-[10px] text-gray-5 be:text-gray-6">
<div className="mx-auto flex items-baseline justify-center space-x-1 text-[10px] text-gray-5 be:text-gray-6">
{children}
</div>
);