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

remove Unused CSS (#19602)

Co-authored-by: Brad Decker <bhdecker84@gmail.com>
Co-authored-by: Nidhi Kumari <nidhi.kumari@consensys.net>
This commit is contained in:
jainex 2023-06-19 23:29:52 +05:30 committed by GitHub
parent e4923399a9
commit 6bc6cba6d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 58 deletions

View File

@ -19,7 +19,6 @@
@import 'connected-accounts-list/index';
@import 'connected-accounts-permissions/index';
@import 'connected-sites-list/index';
@import 'connected-status-indicator/index';
@import 'create-new-vault/create-new-vault.scss';
@import 'custom-spending-cap/index';
@import 'edit-gas-display/index';

View File

@ -1,57 +0,0 @@
.connected-status-indicator {
display: flex;
align-items: center;
place-self: center start;
background: none;
font-size: inherit;
padding: 8px;
border-radius: 100px;
&:hover,
&:active {
background-color: var(--color-background-default-hover);
}
&__inner-circle {
border-radius: 4px;
height: 4px;
width: 4px;
background-color: transparent;
}
&__green-circle,
&__yellow-circle,
&__grey-circle {
border-radius: 4px;
height: 8px;
width: 8px;
border: 1px solid transparent;
display: flex;
align-items: center;
justify-content: center;
}
&__green-circle {
border-color: var(--color-success-default);
}
&__green-circle &__inner-circle {
background-color: var(--color-success-default);
}
&__yellow-circle {
border-color: var(--color-warning-default);
}
&__grey-circle {
border-color: var(--color-border-default);
}
&__text {
@include H8;
color: var(--color-text-alternative);
margin-left: 6px;
white-space: nowrap;
}
}