mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
c4fb514f3d
The unconnected account alert can now be disabled. A "don't show this again" checkbox has been added to the alert, which prevents that alert from being shown in the future. An alert settings page has been added to the settings as well. This page allows the user to disable or enable any alert.
29 lines
466 B
SCSS
29 lines
466 B
SCSS
.alerts-tab {
|
|
&__body {
|
|
display: grid;
|
|
grid-template-columns: 8fr 30px max-content;
|
|
grid-template-rows: 1fr 1fr;
|
|
font-size: 14px;
|
|
align-items: center;
|
|
}
|
|
|
|
&__body > * {
|
|
border-bottom: 1px solid $Grey-100;
|
|
padding: 16px 8px;
|
|
height: 100%;
|
|
}
|
|
|
|
&__body > :nth-child(1n) {
|
|
padding-left: 32px;
|
|
}
|
|
|
|
&__body > :nth-child(3n) {
|
|
padding-right: 32px;
|
|
}
|
|
|
|
&__description {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|