Skip to content

Commit

Permalink
Merge pull request #32 from bacon-delight/dev
Browse files Browse the repository at this point in the history
Bump Version
  • Loading branch information
bacon-delight committed Feb 21, 2022
2 parents 01d263a + 41323a1 commit c3e39f8
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vue-ecosphere",
"private": false,
"version": "0.0.17",
"version": "0.0.18",
"license": "MIT",
"title": "Vue Ecosphere Design System",
"description": "A modern and minimal design system built for better clarity and insights from data",
Expand Down
5 changes: 5 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,11 @@ body {
&--grid {
@include create-grid(2, column, $spacer-0-25);
@include respond-below(sm) {
grid-auto-flow: row;
grid-template-columns: 1fr;
}
}
}
</style>
6 changes: 4 additions & 2 deletions src/assets/scss/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/* Elementary */
$color-dark: #1d242b;
$color-dark-faded: #303841;
// $color-dark: #1d242b;
// $color-dark-faded: #303841;
$color-dark: #191919;
$color-dark-faded: #232323;
$color-light: #fdfdfd;
$color-light-faded: #f5f5f5;

Expand Down
8 changes: 4 additions & 4 deletions src/plugin/utils/defaults/palette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ import { color_palette } from "../types.interface";
export const defaultLightPalette: color_palette = {
"--color-background": "#fdfdfd",
"--color-background-faded": "#f5f5f5",
"--color-contrast": "#1d242b",
"--color-contrast-faded": "#303841",
"--color-contrast": "#191919",
"--color-contrast-faded": "#232323",
"--color-hue": "#5ba5ef",
"--color-hue-faded": "#8dc6ff",
"--color-hue-contrast": "#fdfdfd",
};

export const defaultDarkPalette: color_palette = {
"--color-background": "#1d242b",
"--color-background-faded": "#303841",
"--color-background": "#191919",
"--color-background-faded": "#232323",
"--color-contrast": "#fdfdfd",
"--color-contrast-faded": "#f5f5f5",
};
9 changes: 4 additions & 5 deletions src/views/components/input/Dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@
@change="theme = $event"
)
v-eco-dropdown(
label="What's your favourite city?",
:options="[ { label: 'Chongqing', value: 'chongqing' }, { label: 'Oslo', value: 'oslo' }, ]",
placeholder="Select an option",
:config="{ flow: 'right', contain: true, outline: true, theme: 'invert' }",
@change="theme = $event"
label=":ri-building-2-line: What's your favourite city?",
:options="[ { label: 'Bangalore', value: 'bangalore' }, { label: 'Beijing', value: 'beijing' }, { label: 'Chongqing', value: 'chongqing' }, { label: 'Harbin', value: 'harbin' }, { label: 'Helsinki', value: 'helsinki' }, { label: 'Oslo', value: 'oslo' }, ]",
placeholder=":ri-heart-line: Select an option",
:config="{ flow: 'right', contain: true, outline: true, theme: 'invert' }"
)

vue3-markdown-it.markdown(:source="content")
Expand Down

1 comment on commit c3e39f8

@vercel
Copy link

@vercel vercel bot commented on c3e39f8 Feb 21, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.