edit header
This commit is contained in:
parent
76f28efb07
commit
e4e6f5fa86
@ -125,7 +125,7 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
form.search-input {
|
form.header-search-input {
|
||||||
display: none;
|
display: none;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
@ -4,12 +4,13 @@ type SeparatorProps = {
|
|||||||
pageName: String,
|
pageName: String,
|
||||||
pageLink: string,
|
pageLink: string,
|
||||||
secondLink?: string,
|
secondLink?: string,
|
||||||
|
titleStyles?: any
|
||||||
}
|
}
|
||||||
|
|
||||||
function SeparatorWithAnchor(props: SeparatorProps) {
|
function SeparatorWithAnchor(props: SeparatorProps) {
|
||||||
return (
|
return (
|
||||||
<div class={"flex flex-row justify-between divider mb-2"}>
|
<div class={"flex flex-row justify-between divider mb-2"}>
|
||||||
<h1 className="text-sm font-bold" style={{ textTransform: 'uppercase' }}>
|
<h1 className="text-sm font-bold uppercase" style={props.titleStyles}>
|
||||||
<a href={props.pageLink}>{props.pageName}</a>
|
<a href={props.pageLink}>{props.pageName}</a>
|
||||||
</h1>
|
</h1>
|
||||||
{props.secondLink &&
|
{props.secondLink &&
|
||||||
|
Loading…
Reference in New Issue
Block a user