mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
3f5bc978dd
* refactor: add SecurityProviderBannerAlert ...props * fix: mv security banner alerts on TokenAllowance * fix: mv security BannerAlert in confirm page https://github.com/MetaMask/MetaMask-planning/issues/1195 * fix: allow BlockaidBannerAlert null details * refactor: rm SecurityProviderBannerAlert margin * fix: SIWE security banner alert placement * fix: rm extra banner alert padding for sig v3 & v4 * fix: update SecurityProviderBannerAlert snapshot * fix: update BlockaidBannerAlert snapshot --------- Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com>
36 lines
640 B
SCSS
36 lines
640 B
SCSS
.transaction-alerts {
|
|
text-align: left;
|
|
|
|
& > *:first-of-type {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
& > *:not(:first-of-type) {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
& strong {
|
|
font-weight: bold;
|
|
}
|
|
|
|
&__pending-transactions {
|
|
& a {
|
|
color: var(--color-primary-default);
|
|
}
|
|
}
|
|
|
|
&__link {
|
|
background: transparent;
|
|
border: 0 transparent;
|
|
display: inline;
|
|
padding: 0;
|
|
font-size: $font-size-h7;
|
|
}
|
|
|
|
// We plan to deprecate SecurityProviderBannerMessage in favor of SecurityProviderBannerAlert. This override should be temporary
|
|
.security-provider-banner-message {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
}
|