From a91712a5da7db9951bd93e19ff0459c5e1c78934 Mon Sep 17 00:00:00 2001 From: Jan Lucansky <20298238+jlucansky@users.noreply.github.com> Date: Fri, 11 Aug 2023 13:17:48 +0200 Subject: [PATCH] fix(styles): overflowing tab arrows with light theme #1040 --- src/styles/styles.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/styles/styles.scss b/src/styles/styles.scss index e91d24ed..9c6b4dbf 100644 --- a/src/styles/styles.scss +++ b/src/styles/styles.scss @@ -196,3 +196,13 @@ body { .v-data-table { width: 100% !important; } + +.v-tabs--align-with-title.theme--light>.v-slide-group--is-overflowing>.v-slide-group__prev>.v-icon, +.v-tabs--align-with-title.theme--light>.v-slide-group--is-overflowing>.v-slide-group__next>.v-icon { + color: white; +} + +.v-tabs--align-with-title.theme--light>.v-slide-group--is-overflowing>.v-slide-group__prev--disabled>.v-icon, +.v-tabs--align-with-title.theme--light>.v-slide-group--is-overflowing>.v-slide-group__next--disabled>.v-icon { + color: #ffffffB0 !important; +}