fix(header): header fixes

pull/1049/head
trashtemp 2021-12-27 15:47:06 +01:00
parent e3c25b3477
commit d26975cc69
1 changed files with 3 additions and 3 deletions

View File

@ -15,9 +15,6 @@ import Tooltip from "./Tooltip";
interface Props { interface Props {
server: Server; server: Server;
}
interface Props {
background?: boolean; background?: boolean;
} }
@ -27,6 +24,9 @@ const ServerBanner = styled.div<Props>`
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: end; justify-content: end;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
${(props) => ${(props) =>
props.background && props.background &&