SecurityForm: Style OAuth tokens

This commit is contained in:
Alex Gleason 2020-06-05 16:24:07 -05:00
parent 35d5e7d649
commit 2178c0d595
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
2 changed files with 32 additions and 0 deletions

View file

@ -504,6 +504,13 @@ code {
}
}
}
h2 {
font-size: 20px;
line-height: normal;
margin-bottom: 14px;
font-weight: bold;
}
}
.block-icon {
@ -930,3 +937,28 @@ code {
border-radius: 0 0 4px 4px;
}
}
.authtokens {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-gap: 20px;
}
.authtoken {
&__app-name {
font-size: 16px;
font-weight: bold;
overflow: hidden;
text-overflow: ellipsis;
}
&__valid-until {
font-size: 14px;
overflow: hidden;
text-overflow: ellipsis;
}
&__revoke {
margin-top: 10px;
}
}