Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieukvogt committed Oct 7, 2024
1 parent 55089f5 commit a5ec019
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -665,6 +665,24 @@ body.dark-mode {
transform: translate(-50%, -50%);
transition: left 0.1s ease-out, top 0.1s ease-out;
}

/* Standard syntax */
::selection {
background-color: var(--background-color-one);
color: var(--color-twelve);
}

/* Mozilla Firefox */
::-moz-selection {
background-color: var(--background-color-one);
color: var(--color-twelve);
}

/* WebKit browsers (Chrome, Safari) */
::-webkit-selection {
background-color: var(--background-color-one);
color: var(--color-twelve);
}
}

@media screen and (max-width: 600px) {
Expand Down

0 comments on commit a5ec019

Please sign in to comment.