Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 32f0a3c

Browse files
committedJan 2, 2020
fix(preset-reply): fix incorrect styles
1 parent 0a9f036 commit 32f0a3c

File tree

3 files changed

+21
-11
lines changed

3 files changed

+21
-11
lines changed
 

‎packages/vue-cli-plugin-vuetify-preset-reply/preset/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const preset = {
44
theme: {
55
dark: false,
66
themes: {
7-
dark: {
7+
light: {
88
primary: '#344955',
99
secondary: '#F9AA33',
1010
tertiary: '#232F34',
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
@import './variables.scss'
22

33
.theme--light
4-
.v-dialog.v-bottom-sheet
5-
> *,
6-
> .v-card
7-
border-radius: $dialog-border-radius
4+
// Remove after v2.2 release
5+
.v-card.v-sheet
6+
+elevation(0)
7+
8+
.v-btn.v-btn--fab
9+
&.v-btn--absolute,
10+
&.v-btn--fixed
11+
+elevation(1)
12+
13+
.v-bottom-sheet.v-dialog
14+
border-radius: $dialog-border-radius
15+
box-shadow: none
16+
17+
> *:only-child
18+
border-radius: inherit
19+
box-shadow: none

‎packages/vue-cli-plugin-vuetify-preset-reply/preset/variables.scss

+4-6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ $reply-font-size: 16;
77
$body-font-family: 'Work Sans', sans-serif;
88
$btn-font-weight: 500;
99
$card-border-radius: 0;
10+
$card-elevation: 0;
1011
$dialog-border-radius: 12px 12px 0 0;
1112
$headings: (
1213
'h1':(
@@ -82,12 +83,9 @@ $headings: (
8283
'weight': 600
8384
)
8485
);
85-
$material-dark: (
86+
$material-light: (
8687
'status-bar': (
87-
'regular': #27272f
88+
'regular': #D2DBE0
8889
),
89-
'background': #33333d,
90-
'cards': #373740,
91-
'dividers': #33333d,
92-
'tabs': rgba(255, 255, 255, .3)
90+
'background': #FFFFFF,
9391
);

0 commit comments

Comments
 (0)
Please sign in to comment.