1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Settings:TabBar: Fix text wrap style (#14348)

* TabBar: fix text wrap style

* TabBar: adjust icon alignment
This commit is contained in:
Ariella Vu 2022-04-05 20:22:41 -03:00 committed by GitHub
parent af963d7f7b
commit 582f6168f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,6 @@
&__content {
padding: 12px 18px;
display: flex;
flex-flow: row wrap;
align-items: center;
position: relative;
@ -64,8 +63,14 @@
}
&__icon {
margin-inline-end: 16px;
display: flex;
justify-content: center;
margin-inline-end: 16px;
flex: 0 0 18px;
@media screen and (min-width: $break-large) {
flex: 0 0 14px;
}
}
}