Skip to content

Commit 2062388

Browse files
fix: css problem
1 parent 8f63e95 commit 2062388

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.footer a {
2+
text-decoration: none;
3+
color: black;
4+
cursor: pointer;
5+
}
6+
7+
.footer html, body, div, applet, object, iframe,
8+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
9+
a, abbr, acronym, address, big, cite, code,
10+
del, dfn, em, img, ins, kbd, q, s, samp,
11+
small, strike, strong, sub, sup, tt, var,
12+
b, u, i, center,
13+
dl, dt, dd, ol, ul, li,
14+
fieldset, form, label, legend,
15+
table, caption, tbody, tfoot, thead, tr, th, td,
16+
article, aside, canvas, details, embed,
17+
figure, figcaption, footer, header, hgroup,
18+
menu, nav, output, ruby, section, summary,
19+
time, mark, audio, video, button {
20+
margin: 0;
21+
padding: 0;
22+
border: 0;
23+
font-size: 100%;
24+
font: inherit;
25+
vertical-align: baseline;
26+
line-height: 19px;
27+
}

custom-implementation/src/components/footer.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import {
55
FooterV30 as SharedFooter,
66
} from '@devrev/marketing-shared-components/dist/cjs'
77

8+
import './footer.css'
9+
810
// eslint-disable-next-line @typescript-eslint/no-explicit-any
911
const Footer = ({ list = [], logo, status, compliance, ...rest }: any) => {
1012
// Footer
@@ -14,6 +16,7 @@ const Footer = ({ list = [], logo, status, compliance, ...rest }: any) => {
1416
origin: 'https://api.docs.devrev.ai',
1517
}}>
1618
<SharedFooter
19+
className="footer"
1720
list={list}
1821
logo={logo}
1922
status={status}

0 commit comments

Comments
 (0)