Skip to content

Commit 4b8d081

Browse files
authored
Merge branch 'master' into lazy-contribs
2 parents efb793d + 2af1ec1 commit 4b8d081

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/components/Gitter/Gitter.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
@import 'functions';
44

55
.gitter {
6-
position: absolute;
6+
position: fixed;
77
right: 1.5em;
8-
height: calc(100% - 1.5em);
8+
bottom: 3em;
99
}
1010

1111
.gitter__button {

src/content/configuration/configuration-types.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ contributors:
1010
- byzyk
1111
- EugeneHlushko
1212
- dhurlburtusa
13+
- anshumanv
1314
---
1415

1516
Besides exporting a single config object, there are a few more ways that cover other needs as well.
@@ -46,6 +47,8 @@ One option is to export a function from your webpack config instead of exporting
4647

4748
webpack will run the function exported by the configuration file and wait for a Promise to be returned. Handy when you need to asynchronously load configuration variables.
4849

50+
T> It is possible to export multiple promises by wrapping them into `Promise.all([/* Your promises */]).`
51+
4952
```js
5053
module.exports = () => {
5154
return new Promise((resolve, reject) => {

0 commit comments

Comments
 (0)