Skip to content

Commit

Permalink
0.1.25
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminAster committed Jan 24, 2024
1 parent 99c32f7 commit 75688d8
Show file tree
Hide file tree
Showing 13 changed files with 556 additions and 485 deletions.
1 change: 0 additions & 1 deletion app.webmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "PAMM",
"short_name": "PAMM",
"description": "Pretty Awesome Math Markup – A user-friendly LaTeX alternative with a live editor.",
"start_url": "./",
"scope": "./",
Expand Down
46 changes: 22 additions & 24 deletions css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ h1, h2, h3, h4, h5, h6, strong, b {

button, input, textarea, select, option {
all: unset;
outline: revert;
}

label, button, summary, select, option {
Expand Down Expand Up @@ -89,7 +90,8 @@ dialog {
inset: 0;
margin: auto;
border: none;
padding: 1rem;
padding: 0;
color: inherit;
}

::view-transition-image-pair(*), ::view-transition-old(*), ::view-transition-new(*) {
Expand All @@ -101,31 +103,27 @@ dialog {
color: var(--background);
}

@media (hover: none) {
::-webkit-scrollbar {
display: none;
@media (hover) {
::-webkit-scrollbar, ::-webkit-scrollbar-corner {
inline-size: .8rem;
block-size: .8rem;
background: none;
}
}

::-webkit-scrollbar, ::-webkit-scrollbar-corner {
inline-size: .8rem;
block-size: .8rem;
background: none;
}

::-webkit-scrollbar-button:start:increment, ::-webkit-scrollbar-button:end:decrement {
display: none;
}
::-webkit-scrollbar-button:start:increment, ::-webkit-scrollbar-button:end:decrement {
display: none;
}

::-webkit-scrollbar-thumb, ::-webkit-scrollbar-button {
background-color: var(--scrollbar-color);
inline-size: .8rem;
block-size: .8rem;
border: .2rem solid transparent;
border-radius: .4rem;
background-clip: padding-box;
}
::-webkit-scrollbar-thumb, ::-webkit-scrollbar-button {
inline-size: .8rem;
block-size: .8rem;
background-color: var(--scrollbar-color);
border: .2rem solid transparent;
border-radius: .4rem;
background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover, ::-webkit-scrollbar-button:hover {
background-color: var(--scrollbar-hover-color);
::-webkit-scrollbar-thumb:hover, ::-webkit-scrollbar-button:hover {
background-color: var(--scrollbar-hover-color);
}
}
Loading

0 comments on commit 75688d8

Please sign in to comment.