1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/ui/pages/settings/alerts-tab/alerts-tab.scss
Danica Shen a85a4cf97e
feat(878): add new incomingTxn component and change styles of settings (#20374)
* feat(878): add new incomingTxn component and change styles of settings

* feat(878): relocate openSea tab from rebase regression

* feat(878): make UI and test modifications

* feat(878): transfer to ts

* feat(878): rename network-toggle.tsx
2023-08-04 12:33:47 +01:00

37 lines
617 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;
align-items: center;
}
}