Footer
This commit is contained in:
parent
75d07e0d04
commit
f81c6b6400
@ -8,12 +8,18 @@
|
||||
font-size: 12px;
|
||||
font-weight: var(--font-text-weight-regular, 400);
|
||||
letter-spacing: 0.06px;
|
||||
|
||||
.sub-root {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--Radius-lg, 16px);
|
||||
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) {
|
||||
|
@ -4,11 +4,13 @@ import Mobile from "./mobile";
|
||||
import Desktop from "./desktop";
|
||||
import Tablet from "./tablet";
|
||||
|
||||
type IProps = {};
|
||||
type IProps = {
|
||||
className?: string;
|
||||
};
|
||||
|
||||
export default function Footer(props: IProps) {
|
||||
export default function Footer({ className }: IProps) {
|
||||
return (
|
||||
<footer className={classes["root"]}>
|
||||
<footer className={[classes["root"], className].join(" ")}>
|
||||
<Mobile className={classes["mobile"]} />
|
||||
<Tablet className={classes["tablet"]} />
|
||||
<Desktop className={classes["desktop"]} />
|
||||
|
Loading…
x
Reference in New Issue
Block a user