1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00

fix(app/home): env tile hover style [EE-5299] (#8765)

* fix(app/home): environment item hover

* fix(app/home): remove white border above env list footer

* fix(app/home): icon color on edit buttons hover in high contrast theme
This commit is contained in:
LP B 2023-05-04 16:00:56 +02:00 committed by GitHub
parent 14a581e86b
commit 1ff19f8604
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 26 additions and 7 deletions

View file

@ -1,5 +1,9 @@
import clsx from 'clsx';
import { PropsWithChildren } from 'react';
export function TableFooter({ children }: PropsWithChildren<unknown>) {
return <footer className="footer">{children}</footer>;
export function TableFooter({
children,
className,
}: PropsWithChildren<unknown> & { className?: string }) {
return <footer className={clsx('footer', className)}>{children}</footer>;
}