diff --git a/ui/src/style/unsorted.scss b/ui/src/style/unsorted.scss index 6e6c9c9d2..aa7c7f20f 100644 --- a/ui/src/style/unsorted.scss +++ b/ui/src/style/unsorted.scss @@ -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; + } +}