Fix display of tablists in safari

pull/1922/head
Alex P 2017-08-22 16:47:23 -07:00
parent 20563840d7
commit 628d58c9ad
1 changed files with 13 additions and 0 deletions

View File

@ -244,3 +244,16 @@ $tick-script-overlay-margin: 30px;
padding: 20px;
border: 2px solid $g4-onyx;
}
/*
Fix Display issue in Safari
-----------------------------------------------------------------------------
The pseudo elements offset items in the tablists
*/
.nav-tablist {
&:before,
&:after {
content: none;
display: none;
}
}