This commit is contained in:
Jeremy Thomas
2024-11-11 10:32:08 +00:00
parent 5531ee1d11
commit 6374a8094d
8 changed files with 197 additions and 217 deletions

View File

@@ -37,7 +37,7 @@
}
}
@media screen and (min-width: 1000px) {
@media screen and (min-width: 1400px) {
.bd-hero.is-docs {
flex-wrap: nowrap;
@@ -47,12 +47,6 @@
}
}
@media screen and (min-width: 1200px) {
.bd-hero.is-docs {
flex-wrap: nowrap;
}
}
.bd-hero-title {
color: hsl(
cv.getVar("text-h"),

View File

@@ -1,3 +1,4 @@
@use "sass:list";
@use "sass/utilities/css-variables" as cv;
@use "../utils";
@@ -128,7 +129,7 @@
$bubble-order: ("axbom", "jesseschoff", "ale_codes", "MyTopSecretName");
$delay-factor: 0.3s;
@for $index from 1 through length($bubble-order) {
@for $index from 1 through list.length($bubble-order) {
$name: list.nth($bubble-order, $index);
.js-bubble-#{$name} {

View File

@@ -1,3 +1,4 @@
@use "sass:color";
@use "sass/utilities/mixins" as mx;
@use "sass/themes/light";
@@ -72,11 +73,11 @@ $sass: #bf4080;
color: light.$scheme-main;
&:hover {
background-color: darken($mauve, 2.5%);
background-color: color.adjust($mauve, $lightness: -2.5%);
}
&:active {
background-color: darken($mauve, 5%);
background-color: color.adjust($mauve, $lightness: -5%);
}
}
@@ -85,11 +86,11 @@ $sass: #bf4080;
color: light.$scheme-main;
&:hover {
background-color: darken($pink, 2.5%);
background-color: color.adjust($pink, $lightness: -2.5%);
}
&:active {
background-color: darken($pink, 5%);
background-color: color.adjust($pink, $lightness: -5%);
}
}
}