Skip to content

Commit 45322a7

Browse files
committed
Updates changelog for v0.12.1 and slightly adapts notifications.
1 parent 4023249 commit 45322a7

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

77

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

2425
### Fixed
2526
- Page unique identification.

src/scss/components/_notification.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
.notifications {
22
position: fixed;
3+
display: flex;
4+
flex-direction: column;
5+
align-items: flex-end;
36
bottom: $space-l;
47
right: $space-l;
58
max-width: 400px;
@@ -8,6 +11,7 @@
811
@media (max-width: 450px) {
912
left: $space-s;
1013
right: $space-s;
14+
bottom: $space-s;
1115
}
1216

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

2226
position: relative;
23-
padding: $space-m;
24-
padding-right: $space-l;
27+
padding: $space-l;
28+
padding-right: $space-xl;
2529

2630
border-radius: $radius;
2731
background-color: $color-gray-100;

0 commit comments

Comments
 (0)