@transferwise/neptune-css 12.3.6 → 12.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist/css/column-layout.css +1 -1
- package/dist/css/neptune.css +1 -1
- package/package.json +2 -2
- package/src/less/column-layout.less +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [12.3.7](https://github.com/transferwise/neptune-web/compare/@transferwise/neptune-css@12.3.6...@transferwise/neptune-css@12.3.7) (2022-02-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* custom media typo in column layout ([#1332](https://github.com/transferwise/neptune-web/issues/1332)) ([8215009](https://github.com/transferwise/neptune-web/commit/8215009ced35039eeb08f0c2ff44166e89f109d0))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [12.3.6](https://github.com/transferwise/neptune-web/compare/@transferwise/neptune-css@12.3.5...@transferwise/neptune-css@12.3.6) (2022-02-11)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.column-layout{width:100%}.column-layout-left,.column-layout-right{position:fixed;width:264px;vertical-align:top;height:100%;z-index:3;transition:transform .5s ease;top:0;max-height:100vh;overflow-y:auto}.column-layout-left{transform:translateX(-264px)}.column-layout-right{right:0;transform:translateX(264px)}[dir=rtl] .column-layout-right{left:0;right:auto}.column-layout-left.open,.column-layout-right.open{transform:translateX(0)}.column-layout-main{width:100%}.column-layout-top{position:fixed;top:0;width:264px;max-height:100vh;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.column-layout-bottom{position:fixed;bottom:0;width:264px;padding:24px;padding:var(--size-24,24px)}@media (min-width:992px){.column-layout{display:table}.column-layout-left,.column-layout-right{position:relative;display:table-cell;transform:none}.column-layout-main{display:table-cell;vertical-align:top;width:auto}}.column-layout-cover.in{width:100%;height:100%;opacity:.9}.column-layout-cover .close{position:absolute;left:284px;top:-1000px;opacity:0;transition:opacity .35s ease;transition-delay:.35s;text-decoration:none}[dir=rtl] .column-layout-cover .close{right:284px;left:auto}.column-layout-cover.in .close{opacity:1;top:20px}@media (min-width:992px){.column-layout-cover{display:none}}@media (
|
|
1
|
+
.column-layout{width:100%}.column-layout-left,.column-layout-right{position:fixed;width:264px;vertical-align:top;height:100%;z-index:3;transition:transform .5s ease;top:0;max-height:100vh;overflow-y:auto}.column-layout-left{transform:translateX(-264px)}.column-layout-right{right:0;transform:translateX(264px)}[dir=rtl] .column-layout-right{left:0;right:auto}.column-layout-left.open,.column-layout-right.open{transform:translateX(0)}.column-layout-main{width:100%}.column-layout-top{position:fixed;top:0;width:264px;max-height:100vh;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.column-layout-bottom{position:fixed;bottom:0;width:264px;padding:24px;padding:var(--size-24,24px)}@media (min-width:992px){.column-layout{display:table}.column-layout-left,.column-layout-right{position:relative;display:table-cell;transform:none}.column-layout-main{display:table-cell;vertical-align:top;width:auto}}.column-layout-cover.in{width:100%;height:100%;opacity:.9}.column-layout-cover .close{position:absolute;left:284px;top:-1000px;opacity:0;transition:opacity .35s ease;transition-delay:.35s;text-decoration:none}[dir=rtl] .column-layout-cover .close{right:284px;left:auto}.column-layout-cover.in .close{opacity:1;top:20px}@media (min-width:992px){.column-layout-cover{display:none}}@media (max-width:991px){.column-layout-open{overflow:hidden}.column-layout-cover{position:fixed;display:block;top:0;left:0;width:0;height:0;opacity:0;transition:opacity .35s ease;background-color:#37517e;cursor:pointer;z-index:1055}[dir=rtl] .column-layout-cover{right:0;left:auto}.column-layout-left,.column-layout-right{z-index:1060}}.column-layout-main .container{max-width:1176px;margin-left:0}[dir=rtl] .column-layout-main .container{margin-right:0;margin-left:0}.column-layout-brand{padding:4px 24px;padding:var(--size-4,4px) 24px}@media (min-width:992px){.column-layout-brand{padding-left:32px;padding-right:32px}}body>.column-layout{min-height:100vh;height:100vh}.column-layout-left .column-layout-top{background-position:0 40px;background-position:0 var(--size-40,40px);background-repeat:no-repeat;background-size:264px auto;height:100vh}@media (min-height:596px){.column-layout-left .column-layout-top{background-position:0 100%}[dir=rtl] .column-layout-left .column-layout-top{background-position:100% 100%}}
|