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.
48 lines
835 B
48 lines
835 B
2 years ago
|
.update-snap-permission-list {
|
||
|
width: 100%;
|
||
|
|
||
|
.approved-permission,
|
||
|
.new-permission,
|
||
|
.revoked-permission {
|
||
|
@include H6;
|
||
|
|
||
|
width: 100%;
|
||
|
padding-bottom: 16px;
|
||
|
border-bottom: 1px solid var(--color-border-default);
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
color: var(--color-text-default);
|
||
|
|
||
|
i {
|
||
|
display: block;
|
||
|
padding: 16px;
|
||
|
min-width: 16px;
|
||
|
min-height: 16px;
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.approved-permission {
|
||
|
color: var(--color-success-default);
|
||
|
}
|
||
|
|
||
|
.revoked-permission {
|
||
|
color: var(--color-error-alternative);
|
||
|
}
|
||
|
|
||
|
.new-permission {
|
||
|
color: var(--color-info-default);
|
||
|
}
|
||
|
|
||
|
.permission-description {
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.permission-description-subtext {
|
||
|
@include H7;
|
||
|
}
|
||
|
}
|