Skip to content

Commit

Permalink
trigger build - fixed overscroll jitter
Browse files Browse the repository at this point in the history
  • Loading branch information
dhonus committed Apr 9, 2023
1 parent 2a6d262 commit e3b7a38
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 10 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "arcanum",
"private": true,
"version": "1.1.2",
"version": "1.1.3",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "arcanum",
"version": "1.0.1"
"version": "1.1.3"
},
"tauri": {
"allowlist": {
Expand Down
24 changes: 18 additions & 6 deletions src/style.sass
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ html, body
color: rgb(205, 204, 204)
font-family: 'Roboto', sans-serif
font-size: 17px
overflow: hidden
a
color: rgb(155, 120, 168)
text-decoration: none
Expand All @@ -29,7 +30,7 @@ div.layout
div.left
flex: 1
background: #1d1d1d
height: 100vh
height: auto
overflow-y: auto
border-top: 1px solid transparent
div.identity
Expand Down Expand Up @@ -174,7 +175,7 @@ div.layout
div.center
flex: 1
background: #1d1d1d
height: 100vh
height: auto
overflow-y: auto
display: flex
flex-direction: column
Expand Down Expand Up @@ -231,6 +232,7 @@ div.layout
margin: .3rem .3rem 0 .3rem
border-radius: 7px 7px 0 0
border: 1px solid $border-color
word-wrap: break-word
div.meta-control
display: flex
flex-direction: row
Expand Down Expand Up @@ -276,7 +278,7 @@ div.layout
div.right
flex: 4
background: #171717
height: 100vh
height: auto
overflow-y: auto
padding: 0 1rem
border: 1px solid transparent
Expand Down Expand Up @@ -350,9 +352,19 @@ main.container div.right::-webkit-scrollbar
::-webkit-scrollbar-thumb:hover
background: #555

@media screen and (max-width: 1000px)
div.layout div.right
flex: 2
@media screen and (max-width: 1200px)
div.layout
div.right
flex: 2
div.center
flex: 1
div.left
flex: 1
@media screen and (max-width: 1400px)
div.layout
div.right
flex: 3

@media screen and (min-width: 2000px)
div.layout div.right
padding: 0 10%

0 comments on commit e3b7a38

Please sign in to comment.