Skip to content

Commit

Permalink
Merge pull request #216 from chain4travel/suite
Browse files Browse the repository at this point in the history
Improvements, Bug Fixes, and Refactoring Across Multiple Components
  • Loading branch information
aeddaqqa authored Jun 13, 2024
2 parents 491b0e7 + bf305b7 commit b1bc335
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ server {
}

include /etc/nginx/extra-conf.d/*.conf;
}
}
26 changes: 26 additions & 0 deletions public/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

.termsfeed-com---palette-dark.termsfeed-com---nb {
border-top-left-radius: 1.5rem;
border-top-right-radius: 1.5rem;
background-color: #b5e3fd !important;
}

Expand Down Expand Up @@ -104,3 +105,28 @@
.termsfeed-com---pc-dialog input[type='checkbox'].cc-custom-checkbox + label {
color: var(--text-color) !important;
}

.termsfeed-com---nb .cc-nb-main-container {
padding: 2rem !important;
}

@media (max-width: 600px) {
.termsfeed-com---nb-simple {
max-width: 100% !important;
}

.termsfeed-com---nb .cc-nb-text {
font-size: 0.875rem !important;
line-height: 1.25rem !important;
}
}
@media (min-width: 600px) {
.termsfeed-com---nb-simple {
max-width: 70% !important;
}
}
@media (min-width: 1048px) {
.termsfeed-com---nb-simple {
max-width: 50% !important;
}
}
6 changes: 3 additions & 3 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ import {
} from '@mui/material'
import { FooterButtons, FooterLinks, SocialMediaLinks } from '../../constants/footer-consts'

import { mdiInformationOutline } from '@mdi/js'
import Icon from '@mdi/react'
import { Link } from 'react-router-dom'
import React from 'react'
import { Link } from 'react-router-dom'
import { SUITE_RELEASES } from '../../constants/route-paths'
import Version from './Version'
import { mdiInformationOutline } from '@mdi/js'

export default function Footer() {
const theme = useTheme()
Expand Down Expand Up @@ -219,7 +219,7 @@ export default function Footer() {
component="p"
sx={{ textAlign: 'center' }}
>
© {year} Camino Network Foundation. All rights reserved
© {year} Camino Network Foundation. All rights reserved.
</Typography>
<Box
sx={{
Expand Down

0 comments on commit b1bc335

Please sign in to comment.