Skip to content

Commit

Permalink
Updates changelog for v0.12.1 and slightly adapts notifications.
Browse files Browse the repository at this point in the history
  • Loading branch information
kalvn committed Feb 10, 2021
1 parent 4023249 commit 45322a7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## v0.12.1
## [v0.12.1](https://github.com/kalvn/Shaarli-Material/releases/tag/v0.12.1) - 2021-02-10
### Added
- Support for Shaarli v0.12.1.
- Async metadata loading when adding a new link.
Expand All @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Replaced the QR Code JS library from [qrcodejs](https://davidshimjs.github.io/qrcodejs/) to [qrcode](https://github.com/soldair/node-qrcode).
- Improved overall localization.
- Build system from Gulp to Rollup.
- Redesign of error/warning/success notifications (after saving configuration for example).

### Fixed
- Page unique identification.
Expand Down
8 changes: 6 additions & 2 deletions src/scss/components/_notification.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
.notifications {
position: fixed;
display: flex;
flex-direction: column;
align-items: flex-end;
bottom: $space-l;
right: $space-l;
max-width: 400px;
Expand All @@ -8,6 +11,7 @@
@media (max-width: 450px) {
left: $space-s;
right: $space-s;
bottom: $space-s;
}

.notification:not(:last-child) {
Expand All @@ -20,8 +24,8 @@
@extend .animate-slide-from-right;

position: relative;
padding: $space-m;
padding-right: $space-l;
padding: $space-l;
padding-right: $space-xl;

border-radius: $radius;
background-color: $color-gray-100;
Expand Down

0 comments on commit 45322a7

Please sign in to comment.