a new start

This commit is contained in:
2025-10-25 12:39:30 +02:00
commit c97cadef78
726 changed files with 454051 additions and 0 deletions

43
_sass/_tippy.scss Normal file
View File

@@ -0,0 +1,43 @@
@use "tippyjs/index" with ($namespace-prefix: "tippy");
[data-tippy-root] {
--body-color: var(--inv-body-color);
--body-bg: var(--inv-body-bg);
}
.tippy-box {
color: var(--body-color)!important;
background-color: var(--body-bg)!important;
}
.tippy-content {
font-family: $font-family!important;
font-weight: normal!important;
a {
@extend .heading;
text-decoration: none;
border: none;
&:after {
color: var(--body-color)!important;
}
}
}
.tippy-arrow {
color: var(--body-bg)!important;
}
.dark-mode {
.tippy-content {
-webkit-font-smoothing: initial;
-moz-osx-font-smoothing: initial;
}
}
.light-mode {
.tippy-content {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
}