Skip to content

Commit acee7b8

Browse files
committed
charts + buttons
1 parent 749de1e commit acee7b8

File tree

20 files changed

+129
-184
lines changed

20 files changed

+129
-184
lines changed

dist/main.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/utility.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/utility.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main.scss

Lines changed: 0 additions & 68 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@webpixels/css",
33
"description": "Utility and component-centric design system based on Bootstrap for fast, responsive UI development.",
4-
"version": "2.0.0-beta.4",
4+
"version": "2.0.0-beta.5",
55
"version_short": "2.0",
66
"license": "MIT",
77
"style": "dist/index.css",

scss/components/_button.scss

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,17 @@
3434
);
3535
}
3636

37-
// Alternative sizes
37+
// sizes added in webpixels
3838
.btn-xs {
3939
--#{$prefix}btn-padding-y: #{$btn-padding-y-xs};
4040
--#{$prefix}btn-padding-x: #{$btn-padding-x-xs};
41-
--#{$prefix}btn-font-size: #{$font-size-sm};
41+
--#{$prefix}btn-font-size: #{$input-btn-font-size-xs};
42+
}
43+
44+
.btn-xl {
45+
--#{$prefix}btn-padding-y: #{$btn-padding-y-xl};
46+
--#{$prefix}btn-padding-x: #{$btn-padding-x-xl};
47+
--#{$prefix}btn-font-size: #{$input-btn-font-size-xl};
4248
}
4349

4450
// Squared button
@@ -52,9 +58,9 @@
5258
width: var(--#{$prefix}btn-size);
5359
height: var(--#{$prefix}btn-size);
5460

55-
&.btn-xs {
56-
--#{$prefix}btn-size: #{$btn-square-size-xs};
57-
}
61+
// &.btn-xs {
62+
// --#{$prefix}btn-size: #{$btn-square-size-xs};
63+
// }
5864

5965
&.btn-sm {
6066
--#{$prefix}btn-size: #{$btn-square-size-sm};

scss/components/_list-group.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
.list-group-borderless {
66
--#{$prefix}list-group-border-width: 0;
7+
--#{$prefix}list-group-item-padding-y: 0;
78
}
89

910
// Checkable list group

scss/core/_colors.scss

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ $teal: #22DDDD !default;
2929
$cyan: #00D4FF !default;
3030

3131
// Theme colors
32-
$primary: $indigo !default;
33-
$secondary: $gray-300 !default;
34-
$tertiary: $pink !default;
32+
$primary: $gray-900 !default;
33+
$secondary: $lime !default;
3534
$success: $green !default;
3635
$info: $cyan !default;
3736
$warning: $orange !default;
@@ -44,6 +43,5 @@ $dark: $gray-900 !default;
4443

4544
$surface-primary: $white !default;
4645
$surface-secondary: $gray-100 !default;
47-
$surface-tertiary: $gray-50 !default;
4846
$surface-light: $gray-200 !default;
4947
$surface-dark: shade-color($dark, 7%) !default;

scss/extra.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Webpixels CSS v2.0.0-beta.4 (https://webpixels.io/)
2+
* Webpixels CSS v2.0.0-beta.5 (https://webpixels.io/)
33
* Copyright 2023 Webpixels
44
* Licensed under MIT (https://github.com/webpixels/css/blob/main/LICENSE)
55
*/

0 commit comments

Comments
 (0)