Skip to content

Commit

Permalink
Minor Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammad Hassan committed Aug 14, 2024
1 parent b089830 commit 32235e8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
3 changes: 2 additions & 1 deletion apps/vite/src/styles/global.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
body {
background-color: #f6f6f6 !important;
background: hsla(0, 0%, 96%, 1) !important;
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F6F6F6", endColorstr="#E1DAE6", GradientType=1 );
}

*:focus {
Expand Down
2 changes: 1 addition & 1 deletion packages/app/components/landing_page/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ const LandingPage = () => {
fontWeight: 'bold',
}}
>
Get it on
Get it on the
</RText>
<RText
style={{
Expand Down
11 changes: 8 additions & 3 deletions packages/app/components/landing_page/landingpage.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,25 @@ const loadStyles = (theme) => {
justifyContent: 'center',
alignItems: 'center',
width: '100%',
backgroundColor: 'rgb(248, 248, 248)',
background: 'hsla(0, 0%, 96%, 1)',
filter: 'progid: DXImageTransform.Microsoft.gradient( startColorstr="#F6F6F6", endColorstr="#E1DAE6", GradientType=1 )',
padding: 20,
},
secondaryContentContainer: {
// flex: 1,
width: '100%',
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'rgb(248, 248, 248)',
// backgroundColor: 'rgb(248, 248, 248)',
background: 'hsla(0, 0%, 96%, 1)',
filter: 'progid: DXImageTransform.Microsoft.gradient( startColorstr="#F6F6F6", endColorstr="#E1DAE6", GradientType=1 )',
},
appBadges: {
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
marginVertical: 20,
marginBottom: 20,
marginBottom: 40,
},
backgroundImage: {
flex: 1,
Expand Down Expand Up @@ -83,6 +86,7 @@ const loadStyles = (theme) => {
landingPageAccordion: {
flexDirection: 'row',
flexWrap: 'wrap',
width: xs || sm ? 'auto' : '80%' ,
// border: '10px solid black',
justifyContent: 'center',
},
Expand All @@ -106,6 +110,7 @@ const loadStyles = (theme) => {
fontSize: 20,
color: '#315173',
marginTop: 10,
fontWeight: 'bold',
marginBottom: 10,
width: '100%',
},
Expand Down
2 changes: 1 addition & 1 deletion packages/app/components/navigation/Navbar/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ const loadStyles = (
logo: {
cursor: 'pointer',
backgroundColor: 'transparent',
filter: 'drop-shadow(0 0 1px blue)',
filter: 'drop-shadow(0 0 1px #45607d)',
},
menuBar: {
color: "#315173",
Expand Down

0 comments on commit 32235e8

Please sign in to comment.