Skip to content

Commit

Permalink
fix: minor UI issues fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
R0BIN0 committed Dec 5, 2023
1 parent b99f8fa commit 0484c52
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 17 deletions.
1 change: 1 addition & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/components/Advertising/Advertising.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.ad-container {
cursor: pointer;
width: 100%;
}

.ad-container img {
Expand Down
1 change: 1 addition & 0 deletions src/components/Advertising/Advertising.logic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { IAppDispatch, IRootState } from '../../redux/store';
import { useState } from 'react';
import { setDialog } from '../../redux/reducer/dialogReducer';
import { IDialogs } from '../../types/Dialogs/IDialogs';
import './Advertising.css';

export const useAdvertising = () => {
const { currentBlockchain } = useSelector((s: IRootState) => s.blockchain);
Expand Down
28 changes: 11 additions & 17 deletions src/components/Footer/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,24 @@
padding: 3rem;
color: white;
flex-shrink: 0;
height: 245px;
}

.footer-logo-container {
display: flex;
justify-content: center;
align-items: center;
margin-right: 1.5rem;
}
.footer-logo-container img {
}

.footer-logo-container img {
width: 40px;
margin-right: 0.75rem;
}
.footer-logo-container p {
}

.footer-logo-container p {
font-size: 1.25rem;
color: #ffffff;
}
}

.footer-left{
display: flex;
Expand All @@ -43,16 +44,13 @@

.footer-credential-container{
display: flex;
justify-content: center;
align-items: center;
justify-content: flex-start;
align-items: flex-start;
flex-flow: column nowrap;


}

.footer-credential-item:first-child{
margin-bottom: 2rem;

}

.footer-credential-item-title{
Expand All @@ -63,7 +61,7 @@

.footer-credential-item-link{
font-size: .85rem;

margin-bottom: .5rem;
}

.footer-powered{
Expand All @@ -82,13 +80,9 @@
}
}

@media screen and (max-width: 768px){
@media screen and (max-width: 500px){
.footer-container{
flex-flow: column nowrap;
align-items: flex-start;
}

.footer-credential-section {
margin-bottom: 3rem;
}
}

0 comments on commit 0484c52

Please sign in to comment.