This commit is contained in:
Vins 2024-07-24 16:50:59 +02:00
parent 75d07e0d04
commit f81c6b6400
2 changed files with 12 additions and 4 deletions

View File

@ -8,12 +8,18 @@
font-size: 12px; font-size: 12px;
font-weight: var(--font-text-weight-regular, 400); font-weight: var(--font-text-weight-regular, 400);
letter-spacing: 0.06px; letter-spacing: 0.06px;
.sub-root { .sub-root {
display: flex; display: flex;
align-items: center; align-items: center;
gap: var(--Radius-lg, 16px); gap: var(--Radius-lg, 16px);
white-space: nowrap; white-space: nowrap;
justify-content: center; padding: 0 360px;
//make it sticky
@media (max-width: 1023px) {
padding: 0 12px;
}
} }
@media (max-width: 660px) or (min-width: 768px) { @media (max-width: 660px) or (min-width: 768px) {

View File

@ -4,11 +4,13 @@ import Mobile from "./mobile";
import Desktop from "./desktop"; import Desktop from "./desktop";
import Tablet from "./tablet"; import Tablet from "./tablet";
type IProps = {}; type IProps = {
className?: string;
};
export default function Footer(props: IProps) { export default function Footer({ className }: IProps) {
return ( return (
<footer className={classes["root"]}> <footer className={[classes["root"], className].join(" ")}>
<Mobile className={classes["mobile"]} /> <Mobile className={classes["mobile"]} />
<Tablet className={classes["tablet"]} /> <Tablet className={classes["tablet"]} />
<Desktop className={classes["desktop"]} /> <Desktop className={classes["desktop"]} />