Skip to content

Commit

Permalink
fix css error
Browse files Browse the repository at this point in the history
  • Loading branch information
rikschennink committed Jun 8, 2021
1 parent e7faa68 commit 4a7ba37
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 4.28.1

- Fix CSS error.

## 4.28.0

- Add `storeAsFile` property, if set to `true` FilePond will attempt to store the file objects in file input elements allowing file submit along with parent form (no need for `server` property). **This only works if the browser [supports the DataTransfer constructor](https://caniuse.com/mdn-api_datatransfer_datatransfer), this is the case on Firefox, Chrome, Chromium powered browsers and Safari version 14.1 and higher.**
Expand Down
4 changes: 2 additions & 2 deletions dist/filepond.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* FilePond 4.28.0
* FilePond 4.28.1
* Licensed under MIT, https://opensource.org/licenses/MIT/
* Please visit https://pqina.nl/filepond/ for details.
*/
Expand Down Expand Up @@ -389,7 +389,7 @@
left: calc(50% - 0.8125em); /* .8125 is half of button width */
}
.filepond--file [data-align*='bottom'] {
bottom: 0.5625em * 2;
bottom: 1.125em;
}
.filepond--file [data-align='center'] {
top: calc(50% - 0.8125em);
Expand Down
2 changes: 1 addition & 1 deletion dist/filepond.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* FilePond 4.28.0
* FilePond 4.28.1
* Licensed under MIT, https://opensource.org/licenses/MIT/
* Please visit https://pqina.nl/filepond/ for details.
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/filepond.esm.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/filepond.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* FilePond 4.28.0
* FilePond 4.28.1
* Licensed under MIT, https://opensource.org/licenses/MIT/
* Please visit https://pqina.nl/filepond/ for details.
*/
Expand Down
4 changes: 2 additions & 2 deletions dist/filepond.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/filepond.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "filepond",
"version": "4.28.0",
"version": "4.28.1",
"description": "FilePond, Where files go to stretch their bits.",
"license": "MIT",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/css/file.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
}

& [data-align*='bottom'] {
bottom: 0.5625em * 2;
bottom: 1.125em;
}

& [data-align='center'] {
Expand Down

0 comments on commit 4a7ba37

Please sign in to comment.