1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

Fix 10609 - Prevent overflow of confirmation page hostname (#10935)

This commit is contained in:
David Walsh 2021-04-27 08:46:20 -05:00 committed by GitHub
parent 5bde528cbd
commit bdae6887f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,6 +21,7 @@
&__content {
grid-area: content;
padding: 16px 16px 0;
min-width: 0;
& > :last-child {
margin-bottom: 16px;
@ -59,4 +60,12 @@
&__navigation &__navigation-button:last-child {
margin-left: 8px;
}
.chip {
max-width: 100%;
&__label {
word-break: break-all;
}
}
}