You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
521 B
34 lines
521 B
5 years ago
|
.alerts-tab {
|
||
|
&__body {
|
||
4 years ago
|
@include H6;
|
||
|
|
||
5 years ago
|
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%;
|
||
|
}
|
||
|
|
||
4 years ago
|
&__body > :first-child {
|
||
|
padding-left: 32px;
|
||
|
}
|
||
|
|
||
|
&__body > :nth-child(3n+4) {
|
||
5 years ago
|
padding-left: 32px;
|
||
|
}
|
||
|
|
||
|
&__body > :nth-child(3n) {
|
||
|
padding-right: 32px;
|
||
|
}
|
||
|
|
||
|
&__description {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
}
|