mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 08:43:37 -05:00
fix(header): header fixes
This commit is contained in:
parent
93925834cc
commit
850d685175
1 changed files with 3 additions and 3 deletions
|
@ -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 &&
|
||||||
|
|
Loading…
Reference in a new issue