1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/pages/settings/alerts-tab/alerts-tab.scss

34 lines
521 B
SCSS
Raw Normal View History

.alerts-tab {
&__body {
2020-10-29 17:31:48 +01:00
@include H6;
display: grid;
grid-template-columns: 8fr 30px max-content;
grid-template-rows: 1fr 1fr;
align-items: center;
}
&__body > * {
border-bottom: 1px solid $Grey-100;
padding: 16px 8px;
height: 100%;
}
2020-09-15 20:19:46 +02:00
&__body > :first-child {
padding-left: 32px;
}
&__body > :nth-child(3n+4) {
padding-left: 32px;
}
&__body > :nth-child(3n) {
padding-right: 32px;
}
&__description {
display: flex;
align-items: center;
}
}