Fix activity panel tabs misaligned in Chrome and Safari (https://github.com/woocommerce/woocommerce-admin/pull/478)
This commit is contained in:
parent
0088581fcb
commit
29cfde2ddd
|
@ -38,6 +38,7 @@
|
|||
width: 100%;
|
||||
display: flex;
|
||||
height: 60px;
|
||||
justify-content: flex-end;
|
||||
|
||||
@include breakpoint( '>1100px' ) {
|
||||
height: 80px;
|
||||
|
@ -64,6 +65,7 @@
|
|||
}
|
||||
|
||||
.woocommerce-layout__activity-panel-tab {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
border: none;
|
||||
|
@ -71,6 +73,8 @@
|
|||
cursor: pointer;
|
||||
background-color: $white;
|
||||
color: $core-grey-dark-500;
|
||||
max-width: min-content;
|
||||
min-width: 80px;
|
||||
width: 100%;
|
||||
height: 60px;
|
||||
border-bottom: 3px solid $white;
|
||||
|
|
Loading…
Reference in New Issue