integration/header: apply red border on the header, not the container

this makes more sense as sometimes we'll want to use only the header
without the whole homepage
This commit is contained in:
Emmanuel Pelletier
2024-05-07 17:19:21 +02:00
parent 2a12f312c2
commit 25572b6f06
2 changed files with 5 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ export const Header = ({
}: Props) => {
const { t } = useTranslate()
return (
<header role="banner" className="fr-header">
<header role="banner" className="fr-header lasuite-header">
<div className="fr-header__body">
<div className="fr-container lasuite-container">
<div className="fr-header__body-row">

View File

@@ -14,9 +14,12 @@
}
.lasuite-homepage {
height: 100dvh;
min-height: 100dvh;
display: flex;
flex-direction: column;
}
.lasuite-header {
border-top: 5px solid #e1000f;
}