Skip to content

Commit

Permalink
Release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlaki committed Apr 5, 2022
1 parent 8efe8d5 commit 826d6b4
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Spruce CSS Changelog

## v0.6.0 (2022-04-05)

### New features
- Add [transition(https://sprucecss.com/docs/sass/functions#transition) function.

### Improvements
- Add scrollbar colors to $colors map.
- Set layout-stack `$width`'s default value to `false`.
- Set Stylelint's `color-function-notation` to `modern`.

## v0.5.0 (2022-03-15)

### New features
Expand Down
12 changes: 8 additions & 4 deletions css/spruce.css
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,12 @@ template {
--spruce-table-color-stripe: rgba(0, 0, 0, 0.025);
}

:root {
--spruce-scrollbar-color-thumb-background: rgba(0, 0, 0, 0.15);
--spruce-scrollbar-color-thumb-background-hover: rgba(0, 0, 0, 0.25);
--spruce-scrollbar-color-track-background: rgba(0, 0, 0, 0.05);
}

:root {
--spruce-transition-duration: 0.15s;
--spruce-transition-timing-function: ease-in-out;
Expand Down Expand Up @@ -564,13 +570,13 @@ figure figcaption {
}
.table--rounded th:first-child,
.table--rounded td:first-child {
border-start-start-radius: 0.5rem;
border-end-start-radius: 0.5rem;
border-start-start-radius: 0.5rem;
}
.table--rounded th:last-child,
.table--rounded td:last-child {
border-start-end-radius: 0.5rem;
border-end-end-radius: 0.5rem;
border-start-end-radius: 0.5rem;
}

body {
Expand Down Expand Up @@ -686,7 +692,6 @@ blockquote > * {
margin-block-end: 0;
-webkit-margin-before: 0;
margin-block-start: 0;
width: 100%;
}
blockquote > * + * {
-webkit-margin-before: 0.5rem;
Expand Down Expand Up @@ -977,7 +982,6 @@ fieldset > * {
margin-block-end: 0;
-webkit-margin-before: 0;
margin-block-start: 0;
width: 100%;
}
fieldset > * + * {
-webkit-margin-before: 1rem;
Expand Down
2 changes: 1 addition & 1 deletion css/spruce.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sprucecss",
"version": "0.5.0",
"version": "0.6.0",
"description": "Spruce CSS - Another CSS Framework",
"keywords": [
"css",
Expand Down

0 comments on commit 826d6b4

Please sign in to comment.