mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
8fcbebc546
* Updating account menu icon color * Updating design-tokens and making appropriate updates to extension styles * Adding more deprecated tags to colors * Adding spinner and removing todo comment * Remove comment * Updates * Updating snapshots * More color and ui updates * reverting transition change
36 lines
592 B
SCSS
36 lines
592 B
SCSS
.alerts-tab {
|
|
&__body {
|
|
@include H6;
|
|
|
|
display: grid;
|
|
grid-template-columns: 8fr 30px max-content;
|
|
grid-template-rows: 1fr 1fr;
|
|
align-items: center;
|
|
display: block;
|
|
}
|
|
|
|
&__description-container {
|
|
display: flex;
|
|
}
|
|
|
|
&__description-container > * {
|
|
padding: 0 8px;
|
|
}
|
|
|
|
&__description {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&__icon {
|
|
color: var(--color-icon-alternative);
|
|
}
|
|
}
|
|
|
|
&__item {
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
padding: 16px 32px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
}
|