Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreta <gretadoci@gmail.com>2020-11-11 12:53:32 +0300
committerGitHub <noreply@github.com>2020-11-11 12:53:32 +0300
commitb54a252daea855e90816655a951b3c2ce41585ac (patch)
tree3f6b893381e534a8f69d08949a98a5def85e2731
parentde541c467b77f95cd86de195dd491215886f4b32 (diff)
parent7469e6212f7836da52732206011d668af35fcfac (diff)
Merge pull request #4055 from nextcloud/backport/4050/stable1.6
[stable1.6] Fix auto manual account styling
-rw-r--r--src/components/AccountForm.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/AccountForm.vue b/src/components/AccountForm.vue
index 91d9174cc..ad5f86668 100644
--- a/src/components/AccountForm.vue
+++ b/src/components/AccountForm.vue
@@ -350,17 +350,17 @@ export default {
</script>
<style lang="scss" scoped>
-.tabs-component-tabs {
+::v-deep .tabs-component-tabs {
display: flex;
}
-.tabs-component-tab {
+::v-deep .tabs-component-tab {
flex-grow: 1;
text-align: center;
color: var(--color-text-lighter);
}
-.tabs-component-tab.is-active {
+::v-deep .tabs-component-tab.is-active {
border-bottom: 1px solid black;
font-weight: bold;
}