Skip to content

Commit

Permalink
v1.3-beta: meta info
Browse files Browse the repository at this point in the history
  • Loading branch information
sshmatrix committed Dec 28, 2023
1 parent 3eb7941 commit ed05693
Show file tree
Hide file tree
Showing 4 changed files with 1,040 additions and 12 deletions.
10 changes: 5 additions & 5 deletions components/Preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2788,7 +2788,7 @@ const Preview: React.FC<ModalProps> = ({ show, onClose, _ENS_, chain, handlePare
<span
className='mono'
id="metaOwner"
onClick={() => constants.copyToClipboard(String(_OwnerLegacy_) || constants.zeroAddress)}
onClick={() => { }}
color=''
>
{isMobile ? constants.truncateHexString(String(_OwnerLegacy_) || constants.zeroAddress) : String(_OwnerLegacy_) || constants.zeroAddress}
Expand All @@ -2798,14 +2798,14 @@ const Preview: React.FC<ModalProps> = ({ show, onClose, _ENS_, chain, handlePare
<span
className='mono'
id="metaManager"
onClick={() => constants.copyToClipboard(getManager())}
onClick={() => { }}
>
{isMobile ? constants.truncateHexString(getManager()) : getManager()}
</span>
</div>
<div style={{ margin: '0px 0 2px 0' }}>
<span
className='material-icons'
className='material-icons-round smoller'
style={{
color: 'white',
fontSize: '21px'
Expand Down Expand Up @@ -2882,7 +2882,7 @@ const Preview: React.FC<ModalProps> = ({ show, onClose, _ENS_, chain, handlePare
>
<span
style={{
color: 'grey',
color: 'white',
fontSize: isMobile ? '12px' : '15px',
fontWeight: '700'
}}
Expand All @@ -2900,7 +2900,7 @@ const Preview: React.FC<ModalProps> = ({ show, onClose, _ENS_, chain, handlePare
>
<span
style={{
color: 'white',
color: 'grey',
fontSize: '14px',
fontWeight: '700'
}}
Expand Down
8 changes: 8 additions & 0 deletions pages/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,14 @@ body {
padding-right: 50px;
}

.mono {
font-size: 14px;
font-weight: 600;
font-family: 'SF Mono';
color: lightgreen;
cursor: copy;
}

@media screen and (max-width: 800px) {
.container {
padding: 0 0 0 0;
Expand Down
12 changes: 6 additions & 6 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -561,15 +561,15 @@ const Home: NextPage = () => {
<div id="overlay" className="overlay">
<div className="overlay-content">
<Loading
height={75}
width={75}
height={isMobile ? 50 : 75}
width={isMobile ? 50 : 75}
/>
<div
style={{
marginTop: '20px'
}}
>
<span>
<span style={{ fontSize: isMobile ? '15px' : '20px' }}>
PLEASE WAIT
</span>
</div>
Expand Down Expand Up @@ -913,7 +913,7 @@ const Home: NextPage = () => {
justifyContent: 'center',
display: 'flex',
fontSize: '18px',
color: 'white',
color: 'lightblue',
marginBottom: '25px',
fontWeight: '700'
}}
Expand All @@ -930,15 +930,15 @@ const Home: NextPage = () => {
onClick={() => {
setHelpModal(true)
setIcon('info')
setColor('white')
setColor('lightblue')
setTop('')
setHelp('Search results for your query')
}}
>
<div
className="material-icons smol"
style={{
color: 'white'
color: 'lightblue'
}}
>
info_outline
Expand Down
1,022 changes: 1,021 additions & 1 deletion public/sw.js

Large diffs are not rendered by default.

0 comments on commit ed05693

Please sign in to comment.