mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-18 20:19:30 -07:00
fix: prevent page scrolling when in mobile modal (#238)
* fix: import `_partial/container.scss` in `style.scss` - Add import for `_partial/container.scss` in `style.scss` * chore: ignore CSS map files in .gitignore - Added a new entry for `*.css.map` to the .gitignore file * chore: update dependabot interval to weekly - Update the interval of the dependabot from daily to weekly. * fix: try to fix safari floating address bar issue * fix: try again with svh
This commit is contained in:
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
@@ -8,5 +8,5 @@ updates:
|
|||||||
- package-ecosystem: 'npm' # See documentation for possible values
|
- package-ecosystem: 'npm' # See documentation for possible values
|
||||||
directory: '/' # Location of package manifests
|
directory: '/' # Location of package manifests
|
||||||
schedule:
|
schedule:
|
||||||
interval: 'daily'
|
interval: 'weekly'
|
||||||
open-pull-requests-limit: 1000
|
open-pull-requests-limit: 1000
|
||||||
|
|||||||
5
.gitignore
vendored
5
.gitignore
vendored
@@ -21,4 +21,7 @@ $RECYCLE.BIN/
|
|||||||
|
|
||||||
# Hugo
|
# Hugo
|
||||||
.hugo_build.lock
|
.hugo_build.lock
|
||||||
jsconfig.json
|
jsconfig.json
|
||||||
|
|
||||||
|
# css map
|
||||||
|
*.css.map
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
@import '_core/mixins';
|
@import '_core/mixins';
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--window-height: 100vh;
|
--window-height: 100svh;
|
||||||
--nav-height: 2rem;
|
--nav-height: 2rem;
|
||||||
--space-standard: 0.625rem;
|
--space-standard: 0.625rem;
|
||||||
|
|
||||||
|
|||||||
@@ -6,5 +6,6 @@
|
|||||||
|
|
||||||
@import '_partial/collection';
|
@import '_partial/collection';
|
||||||
@import '_partial/gallery';
|
@import '_partial/gallery';
|
||||||
|
@import '_partial/container';
|
||||||
|
|
||||||
@import 'node_modules/swiper/swiper.scss';
|
@import 'node_modules/swiper/swiper.scss';
|
||||||
|
|||||||
Reference in New Issue
Block a user