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 e87c119

Browse files
authoredJun 6, 2024··
f-button@5.1.1 - Update outline button border colour (#2538)
1 parent f3d8271 commit e87c119

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed
 

‎packages/components/atoms/f-button/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
55

6+
7+
## v5.1.1
8+
9+
_June 6, 2024_
10+
11+
### Changed
12+
- Update outline button border colour to `color-border-strong`.
13+
14+
615
## v5.1.0
716

817
_March 13, 2024_

‎packages/components/atoms/f-button/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@justeat/f-button",
33
"description": "Fozzie Button – The generic button component",
4-
"version": "5.1.0",
4+
"version": "5.1.1",
55
"main": "dist/f-button.umd.min.js",
66
"maxBundleSize": "5kB",
77
"files": [

‎packages/components/atoms/f-button/src/components/Button.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ $btn-outline-bgColor : transparent;
221221
$btn-outline-bgColor--hover : darken(f.$color-white, f.$color-hover-01);
222222
$btn-outline-bgColor--active : darken(f.$color-white, f.$color-active-01);
223223
$btn-outline-textColor : f.$color-content-interactive-tertiary;
224-
$btn-outline-border-color : f.$color-border-default;
224+
$btn-outline-border-color : f.$color-border-strong;
225225
$btn-outline-loading-color : f.$color-content-interactive-tertiary;
226226
$btn-outline-loading-colorOpaque : rgba($btn-outline-loading-color, $btn-default-loading-opacity);
227227

0 commit comments

Comments
 (0)
Please sign in to comment.