fix(design): fix large metadata cells (#655)

fixes #654
This commit is contained in:
Nolan Lawson 2018-11-17 12:24:09 -08:00 committed by GitHub
parent 255bd3b341
commit c1820f62f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -32,7 +32,7 @@
.account-profile-meta {
grid-area: meta;
display: grid;
grid-template-columns: max-content 1fr min-content;
grid-template-columns: auto 1fr max-content;
grid-row-gap: 5px;
align-items: center;
padding: 10px 0;
@ -65,7 +65,7 @@
text-transform: uppercase;
color: var(--deemphasized-text-color);
position: relative;
max-width: 40vw;
max-width: 300px;
}
.account-profile-meta-name:after {
@ -90,6 +90,7 @@
}
.account-profile-meta-name {
padding: 5px 10px 5px 0;
max-width: 40vw;
}
.account-profile-meta-value {
padding: 5px 10px 5px 10px;