edit header

This commit is contained in:
NCanggoro 2023-10-04 19:53:08 +07:00
parent 76f28efb07
commit e4e6f5fa86
2 changed files with 3 additions and 2 deletions

View File

@ -125,7 +125,7 @@
display: none;
}
form.search-input {
form.header-search-input {
display: none;
margin-left: 0;
}

View File

@ -4,12 +4,13 @@ type SeparatorProps = {
pageName: String,
pageLink: string,
secondLink?: string,
titleStyles?: any
}
function SeparatorWithAnchor(props: SeparatorProps) {
return (
<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>
</h1>
{props.secondLink &&