Skip to content

Commit

Permalink
Add better JMP support
Browse files Browse the repository at this point in the history
  • Loading branch information
prayag17 committed Feb 20, 2023
1 parent 26eb3d2 commit 3536c5e
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions src/components/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,42 @@
.paper-icon-button-light {
border-radius: ab.$rounding-default;
}

// Skip Intro

.skipIntro {
background: ab.$background-dark !important;
border-radius: 100vh;
overflow: hidden;
bottom: 12em;
color: white !important;
border: none;
box-shadow: 0 0 15px black;
padding: 0.5em;
font-size: 1.2em;
right: 8em;

&:hover {
box-shadow: 0 0 15px black !important;
}
&::after {
content: "";
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
background: ab.$gradient-default;
z-index: 0;
opacity: 0;
transition: opacity ab.$transition-time-fast-1 linear;
}
.paper-icon-button-light {
z-index: 1;
color: white !important;
}
&:hover::after,
&:focus::after {
opacity: 1;
}
}
2 changes: 1 addition & 1 deletion src/pages/_indexPage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
display: flex;
flex-direction: row;
flex-wrap: nowrap;
gap: 0.5em;
color: white;
align-items: center;
font-size: 1.6em;
&::before {
content: "";
margin-right: 0.5em;
width: 1.3em;
height: 2px;
background: white;
Expand Down

0 comments on commit 3536c5e

Please sign in to comment.