Skip to content

Commit

Permalink
Add missing token for select field’s chevron top position (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpellerin42 authored Nov 17, 2023
1 parent 65accc3 commit 1020291
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.62.7 (2023-11-17)

### Bugfix
- **Text fields**: Add missing token for select field’s chevron top position

# 2.62.6 (2023-11-17)

### Improvement
Expand Down
2 changes: 1 addition & 1 deletion projects/pastanaga-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@guillotinaweb/pastanaga-angular",
"description": "Provides Pastanaga UI elements as Angular components",
"version": "2.62.6",
"version": "2.62.7",
"license": "MIT",
"keywords": [
"angular",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
cursor: pointer;
position: absolute;
right: $icon-right-padding;
top: rhythm(1.5);
top: $top-select-chevron;
width: $icon-width;

&.opened {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,4 @@ $padding-field-control-left: rhythm(1.5) !default;
$margin-bottom-field: rhythm(3) !default;
$height-field-control: calc(#{rhythm(6)} - #{rhythm(0.25)}) !default;
$top-control-label: calc(#{$padding-field-control-top} + #{rhythm(0.25)}) !default;
$top-select-chevron: rhythm(1.5) !default;

0 comments on commit 1020291

Please sign in to comment.