Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions packages/iotex-react-footer/src/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@ const links = [
},
{
name: "footer.research_paper",
href: "https://iotex.io/academics"
href: "https://www.iotex.io/research"
},
{
name: "footer.announcemenets",
href: "https://iotex.io/feed"
href: "https://www.iotex.io/blog"
},
{
name: "footer.delegates_program",
href: "https://member.iotex.io/"
},
{
name: "footer.charity_program",
href: "https://iotex.io/charity"
href: "https://www.iotex.io/charity"
}
]
},
Expand Down Expand Up @@ -174,6 +174,7 @@ const FooterInput = styled(Input, {
backgroundColor: colors.nav02,
width: "220px",
height: "48px",
lineHeight: "48px !important",
color: "#dbdbdb",
borderColor: "#fff",
borderRadius: 0
Expand Down Expand Up @@ -216,14 +217,15 @@ const FooterButton = styled(Button, {
color: "#dbdbdb",
borderColor: "#fff",
borderRadius: 0,
marginLeft: "8px",
marginLeft: "0px",
borderLeftWidth: "0px",
":hover": {
color: colors.nav02
}
});

const Title = styled("div", {
fontSize: "16px",
fontSize: "14px",
lineHeight: 2,
color: "#dbdbdb",
[media.media1024]: { lineHeight: 1.5 }
Expand All @@ -243,8 +245,8 @@ const FooterImages = styled("div", {

const FooterWrapper = styled("div", {
...contentPadding,
paddingTop: "32px",
paddingBottom: "32px",
paddingTop: "50px",
paddingBottom: "50px",
minHeight: `${FOOTER_HEIGHT}px`,
backgroundColor: colors.nav02,
color: colors.white,
Expand Down
2 changes: 1 addition & 1 deletion packages/iotex-react-footer/src/style-color.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const colors = {
information: "#5aaafa", // Information

nav01: "#011627",
nav02: "#20232a",
nav02: "#2b2b2a",
nav03: "#151d27",

PRODUCING: "#0b8de3",
Expand Down