Skip to content
This repository was archived by the owner on Oct 9, 2024. It is now read-only.

Commit d662735

Browse files
committed
Add bg color
1 parent a64bf96 commit d662735

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/components/ChecCard.vue

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ export default {
2323
* Class to pass to inner container
2424
*/
2525
innerClass: {
26-
type: String,
26+
type: [String, Array],
2727
default: '',
2828
},
2929
/**
30-
* The style of the borders on the card. One of "full", "none", "dark", "light".
30+
* The style of the borders on the card. One of "full", "none", "vertical", "horizontal".
3131
*/
3232
borders: {
3333
type: String,
@@ -42,7 +42,7 @@ export default {
4242
},
4343
},
4444
/**
45-
* The style of the borders on the card. One of "full", "none", "dark", "light".
45+
* The color of the borders on the card. One of "holo", "dark", "light".
4646
*/
4747
borderStyle: {
4848
type: String,
@@ -133,11 +133,11 @@ export default {
133133
}
134134
135135
&--background-gray {
136-
@apply bg-gray-200;
136+
@apply bg-gray-300;
137137
}
138138
139139
&--background-dark {
140-
@apply bg-gray-600;
140+
@apply bg-gray-700;
141141
}
142142
143143
&--background-transparent {
@@ -164,7 +164,7 @@ export default {
164164
}
165165
166166
&--background-dark {
167-
@apply bg-gray-600;
167+
@apply bg-gray-700;
168168
}
169169
170170
&--background-gray {

0 commit comments

Comments
 (0)