1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

Fix connected site styling (#15409)

This commit is contained in:
Justin Léger 2022-08-09 13:29:38 -04:00 committed by GitHub
parent 67a7483754
commit 753666d9c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 26 additions and 7 deletions

View File

@ -33,7 +33,12 @@ export default class ConnectedSitesList extends Component {
className="connected-sites-list__content-row"
>
<div className="connected-sites-list__subject-info">
<SiteIcon icon={subject.iconUrl} name={subject.name} size={32} />
<SiteIcon
icon={subject.iconUrl}
name={subject.name}
size={32}
className="connected-sites-list__subject-icon"
/>
<SiteOrigin
className="connected-sites-list__subject-name"
title={subject.extensionId || subject.origin}

View File

@ -32,6 +32,10 @@
min-width: 0;
}
&__subject-icon {
flex-shrink: 0;
}
&__subject-name {
max-width: 215px;
margin-left: 6px;

View File

@ -1,16 +1,18 @@
import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
export default function IconBorder({ children, size }) {
export default function IconBorder({ children, size, className }) {
const borderStyle = { height: `${size}px`, width: `${size}px` };
return (
<div className="icon-border" style={borderStyle}>
<div className={classnames('icon-border', className)} style={borderStyle}>
{children}
</div>
);
}
IconBorder.propTypes = {
className: PropTypes.string,
children: PropTypes.node.isRequired,
size: PropTypes.number.isRequired,
};

View File

@ -3,16 +3,20 @@ import PropTypes from 'prop-types';
import IconBorder from '../icon-border';
import IconWithFallback from '../icon-with-fallback';
export default function SiteIcon({ icon = null, name = '', size }) {
export default function SiteIcon({ icon = null, name = '', size, className }) {
const iconSize = Math.floor(size * 0.75);
return (
<IconBorder size={size}>
<IconBorder size={size} className={className}>
<IconWithFallback icon={icon} name={name} size={iconSize} />
</IconBorder>
);
}
SiteIcon.propTypes = {
/**
* Additional className to add to the root element of SiteIcon.
*/
className: PropTypes.string,
/**
* The img src of the icon.
* Used in IconWithFallback

View File

@ -12,6 +12,7 @@
span {
display: inline-block;
vertical-align: middle;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;

View File

@ -24,11 +24,14 @@
margin-top: 15px;
}
a,
a:hover {
a {
@include H6;
color: var(--color-primary-default);
cursor: pointer;
}
a:hover {
color: var(--color-primary-alternative);
}
}