Skip to content

Commit

Permalink
release 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
henrygd committed Apr 20, 2022
1 parent a7e3982 commit e8114ff
Show file tree
Hide file tree
Showing 6 changed files with 6,184 additions and 12 deletions.
2 changes: 1 addition & 1 deletion dist/bigger-picture.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/bigger-picture.min.mjs

Large diffs are not rendered by default.

3,084 changes: 3,083 additions & 1 deletion dist/bigger-picture.mjs

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions dist/bigger-picture.scss
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
@mixin fillall() {
@mixin bpfillall() {
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.bp-wrap {
@include fillall;
@include bpfillall;
position: fixed;
z-index: 999;
/* If you're mounting on a portion of the screen and need visible
Expand All @@ -19,7 +19,7 @@
}
> div:first-child {
position: absolute;
@include fillall;
@include bpfillall;
background: rgba(0, 0, 0, 0.75);
}
}
Expand All @@ -29,7 +29,7 @@
}

.bp-inner {
@include fillall;
@include bpfillall;
position: absolute;
display: flex;
align-items: center;
Expand All @@ -44,7 +44,7 @@
}

.bp-img-wrap {
@include fillall;
@include bpfillall;
position: absolute;
display: flex;
justify-content: center;
Expand All @@ -68,7 +68,7 @@
img,
div {
position: absolute;
@include fillall;
@include bpfillall;
}
.bp-o {
display: none;
Expand All @@ -86,7 +86,7 @@

.bp-controls {
position: absolute;
@include fillall;
@include bpfillall;
pointer-events: none;
text-align: left;
// weird bug w/ contain strict on firefox 91 kali linux
Expand Down Expand Up @@ -165,7 +165,7 @@
iframe,
video,
div {
@include fillall;
@include bpfillall;
position: absolute;
border: 0;
}
Expand Down
3,091 changes: 3,090 additions & 1 deletion dist/bigger-picture.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bigger-picture",
"version": "0.1.1",
"version": "0.1.2",
"main": "dist/bigger-picture.umd.js",
"module": "dist/bigger-picture.mjs",
"svelte": "src/bigger-picture.js",
Expand Down

0 comments on commit e8114ff

Please sign in to comment.