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

* TabBar: fix text wrap style

* TabBar: adjust icon alignment
feature/default_network_editable
Ariella Vu 3 years ago committed by GitHub
parent af963d7f7b
commit 582f6168f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      ui/components/app/tab-bar/index.scss

@ -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;
}
}
}

Loading…
Cancel
Save